-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (36 loc) · 895 Bytes
/
Cargo.toml
File metadata and controls
38 lines (36 loc) · 895 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
[workspace]
members = [
"crates/ignited",
"crates/ign",
"crates/ignite-core", "crates/ignite-compose",
"crates/ignite-storage",
"crates/ignite-net",
"crates/ignite-teleport",
"crates/ignite-proto",
"crates/ignite-image",
"crates/ignite-agent",
"crates/ignite-sdk",
"crates/ignite-agent-vm",
]
resolver = "2"
[workspace.package]
version = "2.1.2"
edition = "2021"
authors = ["Subeshrock <subesh.rock.3@gmail.com>"]
[workspace.dependencies]
tokio = { version = "1.36", features = ["full"] }
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tracing = "0.1"
tracing-subscriber = "0.3"
tempfile = "3.10"
tar = "0.4"
flate2 = "1.0"
futures = "0.3"
# We will likely need these for the Phase 2/3:
# devicemapper = "..."
# rtnetlink = "..."
sled = "0.34"
uuid = { version = "1.0", features = ["v4"] }
prometheus = "0.13"