mirror of
https://github.com/cubixle/radius-rs.git
synced 2026-04-24 22:34:42 +01:00
24 lines
640 B
TOML
24 lines
640 B
TOML
[package]
|
|
name = "radius"
|
|
version = "0.2.0"
|
|
authors = ["moznion <moznion@gmail.com>"]
|
|
edition = "2018"
|
|
description = "An async/await native implementation of the RADIUS server and client for Rust."
|
|
license = "MPL-2.0"
|
|
readme = "../README.md"
|
|
repository = "https://github.com/moznion/radius-rs"
|
|
homepage = "https://github.com/moznion/radius-rs"
|
|
documentation = "https://docs.rs/radius"
|
|
categories = ["network-programming"]
|
|
keywords = ["radius", "async"]
|
|
|
|
[dependencies]
|
|
md5 = "0.7.0"
|
|
chrono = "0.4"
|
|
rand = "0.8.3"
|
|
num_enum = "0.5.1"
|
|
thiserror = "1.0"
|
|
log = "0.4.14"
|
|
tokio = { version = "1.2.0", features = ["full"] }
|
|
async-trait = "0.1.47"
|