-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (38 loc) · 958 Bytes
/
Cargo.toml
File metadata and controls
41 lines (38 loc) · 958 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
[workspace]
members = [
"crates/janusd",
"crates/janus-net",
"crates/janus-run",
"crates/janus-cli",
"crates/janus-proto",
"crates/iam-mock",
"crates/janus-kernel-ebpf",
"crates/janus-kernel",
]
resolver = "2"
[workspace.dependencies]
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
tracing = "0.1"
tracing-subscriber = "0.3"
jsonwebtoken = "9"
ring = "0.17"
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1", features = ["v4", "serde"] }
bollard = "0.15"
axum = { version = "0.7", features = ["macros"] }
hyper = { version = "1", features = ["full"] }
tower = "0.4"
tower-http = { version = "0.5", features = ["full"] }
rustls = { version = "0.23", features = ["ring"] }
tokio-rustls = "0.26"
futures-util = "0.3"
bytes = "1"
tempfile = "3"
spiffe = "0.6"
[profile.release]
panic = "abort"
[profile.dev]
panic = "abort"