mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 12:37:00 +01:00
Check in missing users crate for SELinux integration (#2050)
Signed-off-by: Kenton Groombridge <concord@gentoo.org>
This commit is contained in:
parent
f2e9c8a16e
commit
0fb1cadbc7
11
Cargo.lock
generated
11
Cargo.lock
generated
|
@ -2474,6 +2474,7 @@ dependencies = [
|
|||
"toml",
|
||||
"tracing",
|
||||
"tss-esapi",
|
||||
"users",
|
||||
"uuid",
|
||||
"walkdir",
|
||||
]
|
||||
|
@ -5039,6 +5040,16 @@ version = "2.1.3"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
|
||||
|
||||
[[package]]
|
||||
name = "users"
|
||||
version = "0.11.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "24cc0f6d6f267b73e5a2cadf007ba8f9bc39c6a6f9666f8cf25ea809a153b032"
|
||||
dependencies = [
|
||||
"libc",
|
||||
"log",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "utf8parse"
|
||||
version = "0.2.1"
|
||||
|
|
|
@ -194,6 +194,7 @@ tss-esapi = "^7.2.0"
|
|||
|
||||
url = "^2.4.0"
|
||||
urlencoding = "2.1.3"
|
||||
users = "^0.11.0"
|
||||
uuid = "^1.4.1"
|
||||
|
||||
wasm-bindgen = "^0.2.86"
|
||||
|
|
|
@ -69,6 +69,7 @@ tokio = { workspace = true, features = ["rt", "fs", "macros", "sync", "time", "n
|
|||
tokio-util = { workspace = true, features = ["codec"] }
|
||||
tracing = { workspace = true }
|
||||
tss-esapi = { workspace = true, optional = true }
|
||||
users = { workspace = true }
|
||||
uuid = { workspace = true }
|
||||
walkdir = { workspace = true }
|
||||
|
||||
|
|
Loading…
Reference in a new issue