Check in missing users crate for SELinux integration (#2050)

Signed-off-by: Kenton Groombridge <concord@gentoo.org>
This commit is contained in:
Kenton Groombridge 2023-09-02 03:54:22 -04:00 committed by GitHub
parent f2e9c8a16e
commit 0fb1cadbc7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 0 deletions

11
Cargo.lock generated
View file

@ -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"

View file

@ -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"

View file

@ -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 }