2020-02-13 00:43:01 +01:00
|
|
|
[package]
|
|
|
|
name = "kanidm_unix_int"
|
|
|
|
description = "Kanidm Unix Integration Clients"
|
|
|
|
documentation = "https://docs.rs/kanidm/latest/kanidm/"
|
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
|
2020-02-13 00:43:01 +01:00
|
|
|
|
2023-02-28 02:39:39 +01:00
|
|
|
[features]
|
|
|
|
default = ["unix"]
|
|
|
|
unix = []
|
2020-02-13 00:43:01 +01:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "kanidm_unixd"
|
|
|
|
path = "src/daemon.rs"
|
2023-02-28 02:39:39 +01:00
|
|
|
required-features = ["unix"]
|
2020-02-13 00:43:01 +01:00
|
|
|
|
2021-03-13 03:33:15 +01:00
|
|
|
[[bin]]
|
|
|
|
name = "kanidm_unixd_tasks"
|
|
|
|
path = "src/tasks_daemon.rs"
|
2023-02-28 02:39:39 +01:00
|
|
|
required-features = ["unix"]
|
2021-03-13 03:33:15 +01:00
|
|
|
|
2020-02-13 00:43:01 +01:00
|
|
|
[[bin]]
|
|
|
|
name = "kanidm_ssh_authorizedkeys"
|
|
|
|
path = "src/ssh_authorizedkeys.rs"
|
2023-02-28 02:39:39 +01:00
|
|
|
required-features = ["unix"]
|
2020-02-13 00:43:01 +01:00
|
|
|
|
2020-02-15 01:27:25 +01:00
|
|
|
[[bin]]
|
|
|
|
name = "kanidm_cache_invalidate"
|
|
|
|
path = "src/cache_invalidate.rs"
|
2023-02-28 02:39:39 +01:00
|
|
|
required-features = ["unix"]
|
2020-02-15 01:27:25 +01:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "kanidm_cache_clear"
|
|
|
|
path = "src/cache_clear.rs"
|
2023-02-28 02:39:39 +01:00
|
|
|
required-features = ["unix"]
|
2020-02-15 01:27:25 +01:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "kanidm_unixd_status"
|
|
|
|
path = "src/daemon_status.rs"
|
2023-02-28 02:39:39 +01:00
|
|
|
required-features = ["unix"]
|
2020-02-15 01:27:25 +01:00
|
|
|
|
2020-02-29 05:02:14 +01:00
|
|
|
[[bin]]
|
|
|
|
name = "kanidm_test_auth"
|
|
|
|
path = "src/test_auth.rs"
|
2023-02-28 02:39:39 +01:00
|
|
|
required-features = ["unix"]
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "kanidm_unix_common"
|
|
|
|
path = "src/lib.rs"
|
2020-02-29 05:02:14 +01:00
|
|
|
|
2020-02-13 00:43:01 +01:00
|
|
|
[dependencies]
|
2022-10-01 08:08:51 +02:00
|
|
|
bytes.workspace = true
|
|
|
|
clap = { workspace = true, features = ["derive", "env"] }
|
|
|
|
futures.workspace = true
|
|
|
|
libc.workspace = true
|
|
|
|
libsqlite3-sys.workspace = true
|
|
|
|
lru.workspace = true
|
|
|
|
kanidm_client.workspace = true
|
|
|
|
kanidm_proto.workspace = true
|
2023-03-01 04:10:52 +01:00
|
|
|
kanidm_lib_crypto.workspace = true
|
|
|
|
kanidm_lib_file_permissions.workspace = true
|
2022-10-01 08:08:51 +02:00
|
|
|
|
|
|
|
r2d2.workspace = true
|
|
|
|
r2d2_sqlite.workspace = true
|
|
|
|
rpassword.workspace = true
|
|
|
|
rusqlite.workspace = true
|
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
serde_json.workspace = true
|
|
|
|
sketching.workspace = true
|
|
|
|
|
|
|
|
toml.workspace = true
|
|
|
|
tokio = { workspace = true, features = ["rt", "macros", "sync", "time", "net", "io-util"] }
|
|
|
|
tokio-util = { workspace = true, features = ["codec"] }
|
|
|
|
tracing.workspace = true
|
2022-11-21 07:51:39 +01:00
|
|
|
reqwest = { workspace = true, default-features = false }
|
2022-11-04 00:49:11 +01:00
|
|
|
walkdir.workspace = true
|
2020-12-28 00:41:16 +01:00
|
|
|
|
2023-02-28 02:39:39 +01:00
|
|
|
[target.'cfg(not(target_family = "windows"))'.dependencies]
|
|
|
|
users.workspace = true
|
2020-05-01 19:24:28 +02:00
|
|
|
|
2020-02-13 00:43:01 +01:00
|
|
|
[dev-dependencies]
|
2022-10-05 01:48:48 +02:00
|
|
|
kanidmd_core.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
|
|
|
|
profiles.workspace = true
|