-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (34 loc) · 959 Bytes
/
Cargo.toml
File metadata and controls
39 lines (34 loc) · 959 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "nss"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib"]
path = "src/lib.rs"
name = "nss_authd"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
# Allows to override the socket path used to connect to the grpc server, through the AUTHD_NSS_SOCKET env variable.
custom_socket = []
integration_tests = []
should_pre_check_env = []
[dependencies]
libnss = "0.9.0"
libc = "0.2.174"
tonic-prost = "0.14.*"
tonic = "0.14.*"
prost = "0.14.*"
rustix = { version = "1.0.8", features = ["use-libc"] }
tokio = { version = "1.47.0", features = ["macros", "rt-multi-thread"] }
tower = { version = "0.4.13", features = ["util"] }
log = "0.4.27"
simple_logger = {version = "5.0.0", features = ["stderr"]}
syslog = "7.0.0"
ctor = "0.5.0"
procfs = "0.18.0"
hyper-util = "0.1.16"
time = "0.3.41"
once_cell = "1.21.3"
[build-dependencies]
tonic-prost-build = "0.14.*"
cc = "1.2.34"