2019-09-04 03:06:37 +02:00
|
|
|
[package]
|
2019-09-14 15:44:08 +02:00
|
|
|
name = "kanidm_tools"
|
2022-05-01 05:55:21 +02:00
|
|
|
version = "1.1.0-alpha.8"
|
2019-09-04 03:06:37 +02:00
|
|
|
authors = ["William Brown <william@blackhats.net.au>"]
|
2022-03-31 06:12:53 +02:00
|
|
|
rust-version = "1.59"
|
2022-02-20 03:43:38 +01:00
|
|
|
edition = "2021"
|
2019-11-16 05:40:45 +01:00
|
|
|
default-run = "kanidm"
|
2019-12-17 06:47:16 +01:00
|
|
|
license = "MPL-2.0"
|
|
|
|
description = "Kanidm Client Tools"
|
|
|
|
documentation = "https://docs.rs/kanidm_tools/latest/kanidm_tools/"
|
2020-01-17 02:51:15 +01:00
|
|
|
homepage = "https://github.com/kanidm/kanidm/"
|
|
|
|
repository = "https://github.com/kanidm/kanidm/"
|
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-12-12 23:49:32 +01:00
|
|
|
[[bin]]
|
|
|
|
name = "kanidm_badlist_preprocess"
|
|
|
|
path = "src/badlist_preprocess.rs"
|
|
|
|
|
2019-09-04 03:06:37 +02:00
|
|
|
[dependencies]
|
2022-05-01 07:18:17 +02:00
|
|
|
kanidm_client = { path = "../kanidm_client", version = "1.1.0-alpha.8" }
|
|
|
|
kanidm_proto = { path = "../kanidm_proto", version = "1.1.0-alpha.8" }
|
2022-06-13 00:51:23 +02:00
|
|
|
tracing = "^0.1.35"
|
2022-07-03 23:29:26 +02:00
|
|
|
tracing-subscriber = { version = "^0.3.14", features = ["env-filter", "fmt"] }
|
2022-04-27 05:35:26 +02:00
|
|
|
rpassword = "^6.0.1"
|
2022-06-19 23:26:52 +02:00
|
|
|
clap = { version = "^3.2", features = ["derive", "env"] }
|
2022-05-23 00:16:48 +02:00
|
|
|
libc = "^0.2.126"
|
2022-07-04 01:05:52 +02:00
|
|
|
serde = { version = "^1.0.138", features = ["derive"] }
|
2022-07-03 23:31:25 +02:00
|
|
|
serde_json = "^1.0.82"
|
2022-04-27 05:35:26 +02:00
|
|
|
shellexpand = "^2.1.0"
|
2022-05-15 22:17:42 +02:00
|
|
|
rayon = "^1.5.3"
|
2022-04-27 05:35:26 +02:00
|
|
|
time = { version = "=0.2.27", features = ["serde", "std"] }
|
|
|
|
qrcode = { version = "^0.12.0", default-features = false }
|
2022-07-10 23:40:05 +02:00
|
|
|
compact_jwt = "^0.2.3"
|
2022-04-27 05:35:26 +02:00
|
|
|
|
|
|
|
zxcvbn = "^2.2.1"
|
|
|
|
|
2022-05-10 05:50:56 +02:00
|
|
|
dialoguer = "^0.10.1"
|
2021-07-13 00:46:45 +02:00
|
|
|
|
2021-10-20 06:42:43 +02:00
|
|
|
webauthn-authenticator-rs = "^0.3.0-alpha.12"
|
2022-06-06 00:22:36 +02:00
|
|
|
tokio = { version = "^1.19.1", features = ["rt", "macros"] }
|
2022-06-05 08:30:08 +02:00
|
|
|
url = { version = "^2.2.2", features = ["serde"] }
|
2021-02-13 04:46:22 +01:00
|
|
|
|
|
|
|
[build-dependencies]
|
2022-06-19 23:26:52 +02:00
|
|
|
clap = { version = "^3.2", features = ["derive"] }
|
2022-07-03 23:29:55 +02:00
|
|
|
clap_complete = { version = "^3.2.3"}
|