-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (47 loc) · 1.38 KB
/
Copy pathCargo.toml
File metadata and controls
52 lines (47 loc) · 1.38 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
[package]
name = "test-bd"
version = "0.2.1"
edition = "2021"
authors = ["Tony Asleson <tasleson@redhat.com>"]
description = "A library and CLI tool for creating procedurally generated test block devices using ublk"
documentation = "https://docs.rs/test-bd"
homepage = "https://github.com/tasleson/test-bd"
repository = "https://github.com/tasleson/test-bd"
license = "MIT OR Apache-2.0"
keywords = ["ublk", "block-device", "testing", "storage", "userspace"]
categories = ["development-tools::testing", "hardware-support", "filesystem"]
readme = "README.md"
[lib]
name = "test_bd"
path = "src/lib.rs"
[[bin]]
name = "test-bd"
path = "src/bin/test-bd.rs"
doc = false
[[bin]]
name = "test-bd-verify"
path = "src/bin/test-bd-verify.rs"
doc = false
[dependencies]
# Core library dependencies
num = "0.4.3"
libublk = "0.4"
# For local development, uncomment the line below and comment the line above:
# libublk = { path = "../libublk-rs/"}
libc = "0.2"
smol = "2"
log = "0.4"
io-uring = { version = "0.7.12", features = ["bindgen"] }
futures = "0.3"
rand_pcg = "0.9"
# CLI binary dependencies (also available when using library)
daemonize = "0.5"
env_logger = "0.11"
nix = { version ="0.30", features = ["poll", "event"] }
rand = "0.9"
clap = { version = "4", features = ["env", "derive"] }
parse-size = "1.1"
size-display = "0.1.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
colored = "3"