mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.20.1 to 1.21.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.20.1...tokio-1.21.0) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
56 lines
1.6 KiB
TOML
56 lines
1.6 KiB
TOML
[package]
|
|
name = "kanidm_tools"
|
|
version = "1.1.0-alpha.9"
|
|
authors = ["William Brown <william@blackhats.net.au>"]
|
|
rust-version = "1.59"
|
|
edition = "2021"
|
|
default-run = "kanidm"
|
|
license = "MPL-2.0"
|
|
description = "Kanidm Client Tools"
|
|
documentation = "https://docs.rs/kanidm_tools/latest/kanidm_tools/"
|
|
homepage = "https://github.com/kanidm/kanidm/"
|
|
repository = "https://github.com/kanidm/kanidm/"
|
|
|
|
[lib]
|
|
name = "kanidm_cli"
|
|
path = "src/cli/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "kanidm"
|
|
path = "src/cli/main.rs"
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "kanidm_ssh_authorizedkeys_direct"
|
|
path = "src/ssh_authorizedkeys.rs"
|
|
|
|
[[bin]]
|
|
name = "kanidm_badlist_preprocess"
|
|
path = "src/badlist_preprocess.rs"
|
|
|
|
[dependencies]
|
|
clap = { version = "^3.2", features = ["derive", "env"] }
|
|
compact_jwt = "^0.2.3"
|
|
dialoguer = "^0.10.1"
|
|
libc = "^0.2.127"
|
|
kanidm_client = { path = "../kanidm_client", version = "1.1.0-alpha.8" }
|
|
kanidm_proto = { path = "../kanidm_proto", version = "1.1.0-alpha.8" }
|
|
qrcode = { version = "^0.12.0", default-features = false }
|
|
rayon = "^1.5.3"
|
|
rpassword = "^7.0.0"
|
|
serde = { version = "^1.0.142", features = ["derive"] }
|
|
serde_json = "^1.0.83"
|
|
shellexpand = "^2.1.2"
|
|
time = { version = "=0.2.27", features = ["serde", "std"] }
|
|
tracing = "^0.1.35"
|
|
tracing-subscriber = { version = "^0.3.14", features = ["env-filter", "fmt"] }
|
|
tokio = { version = "^1.21.0", features = ["rt", "macros"] }
|
|
url = { version = "^2.2.2", features = ["serde"] }
|
|
uuid = "^1.1.2"
|
|
webauthn-authenticator-rs = { version = "0.4.5", features = ["u2fhid"] }
|
|
zxcvbn = "^2.2.1"
|
|
|
|
[build-dependencies]
|
|
clap = { version = "^3.2", features = ["derive"] }
|
|
clap_complete = { version = "^3.2.3"}
|