2019-09-04 03:06:37 +02:00
|
|
|
[package]
|
2019-09-14 15:44:08 +02:00
|
|
|
name = "kanidm_tools"
|
2019-11-16 05:40:45 +01:00
|
|
|
default-run = "kanidm"
|
2019-12-17 06:47:16 +01:00
|
|
|
description = "Kanidm Client Tools"
|
2022-11-09 22:43:22 +01:00
|
|
|
documentation = "https://kanidm.github.io/kanidm/stable/"
|
2022-10-01 08:08:51 +02:00
|
|
|
|
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
rust-version.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
homepage.workspace = true
|
|
|
|
repository.workspace = true
|
2019-09-04 03:06:37 +02:00
|
|
|
|
2020-03-24 23:21:49 +01:00
|
|
|
[lib]
|
|
|
|
name = "kanidm_cli"
|
|
|
|
path = "src/cli/lib.rs"
|
|
|
|
|
2019-09-04 03:06:37 +02:00
|
|
|
[[bin]]
|
|
|
|
name = "kanidm"
|
2020-03-24 23:21:49 +01:00
|
|
|
path = "src/cli/main.rs"
|
2021-07-24 03:12:35 +02:00
|
|
|
doc = false
|
2019-09-04 03:06:37 +02:00
|
|
|
|
2019-11-16 05:40:45 +01:00
|
|
|
[[bin]]
|
2020-02-13 00:43:01 +01:00
|
|
|
name = "kanidm_ssh_authorizedkeys_direct"
|
2019-11-16 05:40:45 +01:00
|
|
|
path = "src/ssh_authorizedkeys.rs"
|
|
|
|
|
2019-09-04 03:06:37 +02:00
|
|
|
[dependencies]
|
2022-10-01 08:08:51 +02:00
|
|
|
clap = { workspace = true, features = ["derive", "env"] }
|
2023-02-06 00:50:10 +01:00
|
|
|
compact_jwt = { workspace = true, features = ["openssl"] }
|
2022-10-01 08:08:51 +02:00
|
|
|
dialoguer.workspace = true
|
2022-10-07 03:35:58 +02:00
|
|
|
futures-concurrency.workspace = true
|
2022-10-01 08:08:51 +02:00
|
|
|
libc.workspace = true
|
|
|
|
kanidm_client.workspace = true
|
|
|
|
kanidm_proto.workspace = true
|
|
|
|
qrcode = { workspace = true, default-features = false }
|
|
|
|
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
|
|
|
|
zxcvbn.workspace = true
|
2021-02-13 04:46:22 +01:00
|
|
|
|
|
|
|
[build-dependencies]
|
2022-10-01 08:08:51 +02:00
|
|
|
clap = { workspace = true, features = ["derive"] }
|
|
|
|
clap_complete.workspace = true
|
|
|
|
uuid.workspace = true
|
2022-11-21 03:11:26 +01:00
|
|
|
|
|
|
|
[target."cfg(target_os = \"windows\")".dependencies.webauthn-authenticator-rs]
|
|
|
|
workspace = true
|
|
|
|
features = ["win10"]
|
|
|
|
|
|
|
|
[target."cfg(not(any(target_os = \"windows\")))".dependencies.webauthn-authenticator-rs]
|
|
|
|
workspace = true
|
|
|
|
features = ["u2fhid"]
|