-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
79 lines (72 loc) · 2.18 KB
/
Copy pathCargo.toml
File metadata and controls
79 lines (72 loc) · 2.18 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[package]
name = "ubiblk"
version = "0.5.1"
edition = "2021"
license = "AGPL-3.0-only"
[profile.release]
lto = "thin"
codegen-units = 4
debug = true
split-debuginfo = "packed"
strip = "symbols"
opt-level = "s"
[profile.release.package."*"]
codegen-units = 16
debug = false
opt-level = "s"
[dependencies]
atomic_refcell = "0.1.14"
clap = { version = "4.5.49", features = ["cargo", "wrap_help", "derive"] }
serde = { version = "1.0", features = ["derive"] }
libc = "0.2"
thiserror = "2.0.17"
nix = { version = "0.31.3", features = ["event", "fs", "sched", "process", "resource"] }
# vhost = { path = "../vhost/vhost", features = ["vhost-user-frontend"] }
# vhost-user-backend = { path = "../vhost/vhost-user-backend" }
vhost = "0.17.0"
vhost-user-backend = "0.23.0"
vmm-sys-util = "0.15.0"
vm-memory = "0.18.0"
virtio-bindings = "0.2.6"
virtio-queue = "0.18.0"
# libublk >= 0.4.7 requires io-uring ^0.7.12, so the earlier pin to 0.7.9 (for
# libublk 0.4.5) no longer applies.
io-uring = "0.7.12"
hex = "0.4.3"
log = "0.4.28"
env_logger = "0.11.8"
tempfile = "3.23.0"
serde_with = { version = "3.21.0", features = ["base64"] }
base64 = "0.23.1"
aes-gcm = "0.11.0"
serde_json = "1.0.145"
serde_yaml_ng = "0.10.0"
rustyline = "18.0.1"
openssl = { version = "0.10.80", features = ["vendored"] }
sha2 = "0.11.0"
hmac = "0.13.0"
ciborium = "0.2.2"
aws-config = "1.8.12"
aws-sdk-s3 = { version = "1.120.0", default-features = false, features = ["sigv4a", "http-1x", "default-https-client", "rt-tokio"] }
aws-smithy-runtime-api = "1.11"
fastrand = "2.3"
tokio = { version = "1.48.0", features = ["rt"] }
crossbeam-channel = "0.5.15"
libublk = "0.4.7"
ctrlc = "3.5.1"
ubiblk-macros = { path = "crates/ubiblk-macros" }
zstd = "0.14.0"
crc32fast = "1.4"
toml = "1.0.1"
zeroize = "1.8.2"
[build-dependencies]
bindgen = "0.72.1"
[dev-dependencies]
virtio-queue = { version = "0.18.0", features = ["test-utils"] }
vm-memory = { version = "0.18.0", features = ["backend-mmap", "backend-atomic"] }
aws-smithy-mocks = "0.3.0"
aws-sdk-s3 = { version = "1.120.0", default-features = false, features = ["sigv4a", "http-1x", "default-https-client", "rt-tokio", "test-util"] }
[features]
default = []
[workspace]
members = [".", "crates/ubiblk-macros"]