-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
61 lines (52 loc) · 1.38 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "libublk"
version = "0.4.0"
edition = "2021"
description = "Library for building linux block device in userspace"
authors = ["Ming Lei <[email protected]>"]
readme = "README.md"
repository = "https://github.com/ublk-org/libublk-rs"
license = "MIT OR Apache-2.0"
keywords = ["ublk", "io_uring", "userspace", "block", "storage"]
categories = [ "asynchronous", "filesystem" ]
publish = true
[badges]
maintenance = { status = "actively-developed" }
[features]
fat_complete = []
[[bin]]
name = "ublk_user_id"
path = "utils/ublk_user_id_rs.rs"
[package.metadata]
scripts = ["utils/ublk_chown.sh"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
pkg-config = "0.3"
bindgen = "0.69"
regex = "1.8.3"
anyhow = {version = "1.0.66", features = ["default"]}
[dependencies]
libc = "0.2"
io-uring = "0.6.0"
serde = {version = "1.0.99", features = ["derive"]}
serde_json = "1.0.79"
bitmaps = "3.2.0"
log = {version = "0.4", features = ["release_max_level_off"]}
thiserror = "1.0.43"
futures = "0.3"
env_logger = "0.9"
smol = "1.3.0"
slab = "0.4.9"
derive_setters = "0.1"
bitflags = "2.4.1"
[dev-dependencies]
block-utils = "0.11.0"
tempfile = "3.6.0"
regex = "1.8.4"
anyhow = {version = "1.0.66", features = ["default"]}
clap = "4.3"
nix = "0.26.2"
ilog = "1.0.1"
async-std = {version = "1.12.0"}
ctrlc = "3.4.0"
daemonize = "0.5"