]> git.proxmox.com Git - proxmox.git/blob - proxmox-async/Cargo.toml
bump proxmox-async to 0.4.1
[proxmox.git] / proxmox-async / Cargo.toml
1 [package]
2 name = "proxmox-async"
3 version = "0.4.1"
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 futures = "0.3"
14 lazy_static = "1.4"
15 pin-utils = "0.1.0"
16 tokio = { version = "1.0", features = [ "net", "rt", "rt-multi-thread", "sync"] }
17
18 proxmox-io = { path = "../proxmox-io", version = "1", features = [ "tokio" ] }
19 proxmox-lang = { path = "../proxmox-lang", version = "1.1" }
20
21 [dev-dependencies]
22 tokio = { version = "1.6", features = [ "macros" ] }