-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (40 loc) · 857 Bytes
/
Cargo.toml
File metadata and controls
49 lines (40 loc) · 857 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
40
41
42
43
44
45
46
47
48
49
[package]
name = "authentik_sys"
version = "0.40.5"
edition = "2024"
[lib]
crate-type = ["staticlib", "lib"]
[workspace.lints.clippy]
panic = "deny"
unwrap_used = "deny"
expect_used = "deny"
[lints]
workspace = true
[workspace]
resolver = "3"
members = ["nss", "pam"]
[[example]]
name = "grpc"
[[example]]
name = "log"
[dependencies]
base64 = "0.22.1"
cxx = "1.0.194"
hyper-util = "0.1.20"
libc = "0.2.183"
log = "0.4.29"
prost = "0.14"
prost-types = "0.14"
sentry = "0.46.2"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
tokio = { version = "1.50.0", features = ["rt-multi-thread"] }
tonic = "0.14"
tonic-prost = "0.14"
tower = { version = "0.5.3", features = ["util" ]}
url = "2.5.8"
windows-sys = "0.61.2"
[target.'cfg(windows)'.dependencies]
eventlog = "0.4.0"
[target.'cfg(unix)'.dependencies]
syslog = "7.0.0"