mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 12:37:00 +01:00
58 lines
1.5 KiB
TOML
58 lines
1.5 KiB
TOML
[package]
|
|
name = "kanidm_tools"
|
|
default-run = "kanidm"
|
|
description = "Kanidm Client Tools"
|
|
documentation = "https://docs.rs/kanidm_tools/latest/kanidm_tools/"
|
|
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
rust-version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
|
|
[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 = { workspace = true, features = ["derive", "env"] }
|
|
compact_jwt.workspace = true
|
|
dialoguer.workspace = true
|
|
libc.workspace = true
|
|
kanidm_client.workspace = true
|
|
kanidm_proto.workspace = true
|
|
qrcode = { workspace = true, default-features = false }
|
|
rayon.workspace = true
|
|
rpassword.workspace = true
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json.workspace = true
|
|
shellexpand.workspace = true
|
|
time = { workspace = true, features = ["serde", "std"] }
|
|
tracing.workspace = true
|
|
tracing-subscriber = { workspace = true, features = ["env-filter", "fmt"] }
|
|
tokio = { workspace = true, features = ["rt", "macros"] }
|
|
url = { workspace = true, features = ["serde"] }
|
|
uuid.workspace = true
|
|
webauthn-authenticator-rs = { workspace = true, features = ["u2fhid"] }
|
|
zxcvbn.workspace = true
|
|
|
|
[build-dependencies]
|
|
clap = { workspace = true, features = ["derive"] }
|
|
clap_complete.workspace = true
|
|
uuid.workspace = true
|