forked from deeplethe/forkd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (33 loc) · 1018 Bytes
/
Copy pathCargo.toml
File metadata and controls
35 lines (33 loc) · 1018 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
[workspace]
resolver = "2"
members = [
"crates/forkd-vmm",
"crates/forkd-controller",
"crates/forkd-cli",
"crates/forkd-uffd",
"experiments/v0.4-uffd-wp-poc",
"experiments/v0.4-kvm-uffd-wp-poc",
"experiments/v0.4-thp-uffd-wp-poc",
"experiments/v0.4-restore-poc",
]
[workspace.package]
version = "0.5.2"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/deeplethe/forkd"
authors = ["Deeplethe <info@deeplethe.com>", "forkd contributors"]
[workspace.dependencies]
tokio = { version = "1", features = ["full"] }
anyhow = "1"
thiserror = "2"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
clap = { version = "4", features = ["derive", "env"] }
axum = "0.7"
axum-server = { version = "0.8", features = ["tls-rustls"] }
rustls = "0.23"
parking_lot = "0.12"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
rcgen = "0.13"