]> git.proxmox.com Git - proxmox.git/blob - proxmox-async/Cargo.toml
291ff32445e87e30a8fc2fdc0be14348691e274b
[proxmox.git] / proxmox-async / Cargo.toml
1 [package]
2 name = "proxmox-async"
3 version = "0.3.3"
4 authors = ["Proxmox Support Team <support@proxmox.com>"]
5 edition = "2018"
6 license = "AGPL-3"
7 description = "Proxmox async/tokio helpers"
8
9 exclude = [ "debian" ]
10
11 [dependencies]
12 anyhow = "1.0"
13 bytes = "1.0"
14 crc32fast = "1"
15 endian_trait = { version = "0.6", features = ["arrays"] }
16 flate2 = "1.0"
17 futures = "0.3"
18 lazy_static = "1.4"
19 pin-utils = "0.1.0"
20 tokio = { version = "1.0", features = ["fs", "net", "rt", "rt-multi-thread", "sync"] }
21 walkdir = "2"
22
23 proxmox-sys = { path = "../proxmox-sys", version = "0.2.0" }
24 proxmox-io = { path = "../proxmox-io", version = "1", features = [ "tokio" ] }
25 proxmox-time = { path = "../proxmox-time", version = "1" }
26
27 [dev-dependencies]
28 tokio = { version = "1.6", features = [ "macros" ] }