-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (42 loc) · 1.12 KB
/
Cargo.toml
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
[package]
name = "rublk"
version = "0.2.6"
edition = "2021"
description = "Rust ublk generic targets"
authors = ["Ming Lei <[email protected]>"]
readme = "README.md"
repository = "https://github.com/ublk-org/rublk"
license = "GPL-2.0-or-later"
keywords = ["ublk", "io_uring", "userspace", "block", "storage"]
publish = true
[badges]
maintenance = { status = "actively-developed" }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
qcow2-rs = "0.1"
libublk = "0.3"
clap = { version = "4.3", features = ["derive"] }
clap_derive = "4.3"
libc = "0.2"
anyhow = {version = "1.0.66", features = ["default"]}
thiserror = {version = "2.0"}
serde = {version = "1.0.99", features = ["derive"]}
serde_json = "1.0.79"
log = {version = "0.4", features = ["release_max_level_off"]}
env_logger = "0.9"
backtrace = "0.3"
daemonize = "0.5"
nix = "0.26.2"
io-uring = "0.6.0"
ilog = "1.0.1"
shared_memory = "0.12.4"
rand = "0.8.4"
smol = "2.0.2"
futures = "0.3.31"
async-trait = "0.1"
rustversion = "1.0.14"
parse-size = "1.1.0"
bitflags = "2.8"
[dev-dependencies]
tempfile = "3.6.0"
regex = "1.8.4"