-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
46 lines (41 loc) · 1.21 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 = "qcow2-rs"
version = "0.1.7"
edition = "2021"
description = "A library for read/write qcow2 image in async/await"
authors = ["Ming Lei <[email protected]>"]
readme = "README.md"
repository = "https://github.com/ublk-org/qcow2-rs.git"
license = "MIT OR Apache-2.0"
keywords = ["io_uring", "qcow2", "qemu", "disk", "async"]
categories = [ "asynchronous", "filesystem" ]
publish = true
[[bin]]
name = "rqcow2"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bincode = "1.3"
serde = { version = "1.0", features = ["derive"] }
clap = { version = "4.3", features = ["derive"] }
clap_derive = "4.3"
clap-num = "1.0.2"
libc = "0.2"
byteorder = "1.5"
async-trait = "0.1"
futures-locks = "0.7"
tokio = { version = "1.41", features = ["full"] }
nix = "0.26.2"
async-recursion = "1.0.5"
miniz_oxide = { version = "0.8", features = ["std"] }
futures = "0.3.31"
log = {version = "0.4", features = ["release_max_level_off"]}
env_logger = "0.9"
rustversion = "1.0.14"
tempfile = "3.6.0"
[target.'cfg(target_os = "linux")'.dependencies]
tokio-uring = { version = "0.5"}
[dev-dependencies]
tempfile = "3.6.0"
crypto-hash = "0.3"
rand = "0.8"