-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (56 loc) · 1.58 KB
/
Copy pathCargo.toml
File metadata and controls
59 lines (56 loc) · 1.58 KB
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
50
51
52
53
54
55
56
57
58
59
[workspace]
members = [
"feos",
"feos/services/vm-service",
"feos/services/host-service",
"feos/services/image-service",
"feos/services/task-service",
"feos/services/container-service",
"cli",
"feos/proto",
"feos/utils",
]
resolver = "2"
[workspace.lints.clippy]
uninlined_format_args = "warn"
[workspace.package]
version = "0.5.0"
edition = "2021"
[workspace.dependencies]
tokio = { version = "1.47.1", features = ["full"] }
tokio-stream = { version = "0.1.15", features = ["net"] }
tonic = "0.13.0"
prost = "0.13.5"
prost-types = "0.13.5"
anyhow = "1.0.100"
nix = { version = "0.30.1", features = ["mount", "user", "reboot", "feature", "net", "aio", "signal", "process", "fs", "hostname"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.132"
sqlx = { version = "0.8.6", features = ["runtime-tokio-rustls", "sqlite", "macros", "uuid"] }
uuid = { version = "1.18.1", features = ["v4"] }
tonic-build = "0.13.0"
log = "0.4.28"
env_logger = "0.11"
openssl = { version = "0.10.72", features = ["vendored"] }
oci-distribution = "0.11.0"
tempfile = "3.23.0"
tower = { version = "0.5.2", features = ["full"] }
sha2 = "0.10"
hex = "0.4"
digest = "0.10"
clap = { version = "4.5.48", features = ["derive", "env"] }
dotenvy = { version = "0.15"}
libc = "0.2"
rtnetlink = "0.18.1"
netlink-packet-route = "~0.25.0"
pnet = "0.35.0"
dhcproto = "0.13.0"
socket2 = "0.6.0"
futures = "0.3.31"
chrono = "0.4.42"
thiserror = "2.0.16"
hyper = "1.7.0"
hyper-util = { version = "0.1.17", features = ["full"] }
termcolor = "1.1"
once_cell = "1.19"
feos-proto = { path = "feos/proto" }