# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2018" name = "radius-rust" version = "0.4.4" authors = ["MikhailMS <1488maiklm@gmail.com>"] include = [ "Cargo.toml", "LICENSE", "README.md", "CHANGELOG.md", "dict_examples/*", "examples/*", "src/*", "tests/*", ] description = "Pure Rust implementation of RADIUS Server/Client" homepage = "https://github.com/MikhailMS/rust-radius" documentation = "https://docs.rs/radius-rust/0.4.4" readme = "README.md" keywords = [ "radius", "radius-client", "radius-server", ] categories = ["network-programming"] license = "MIT" repository = "https://github.com/MikhailMS/rust-radius" [[example]] name = "sync_radius_server" [[example]] name = "sync_radius_client" [[example]] name = "async_radius_server" required-features = ["async-examples"] [[example]] name = "async_radius_client" required-features = ["async-examples"] [dependencies.async-std] version = "1.9.0" optional = true [dependencies.async-trait] version = "0.1.48" optional = true [dependencies.futures] version = "0.3.13" optional = true [dependencies.hmac] version = "0.12.1" [dependencies.md-5] version = "0.10.1" [dependencies.rand] version = "0.8.5" [dependencies.thiserror] version = "1.0.32" [dev-dependencies.log] version = "0.4.17" [dev-dependencies.mio] version = "0.7.7" features = [ "os-poll", "udp", ] [dev-dependencies.simple_logger] version = "1.11.0" default-features = false [features] async-examples = [ "async-trait", "async-std", "futures", ] async-radius = ["async-trait"] default = []