]> git.proxmox.com Git - proxmox-backup.git/blame - pbs-tools/Cargo.toml
tree-wide: bump edition to 2021
[proxmox-backup.git] / pbs-tools / Cargo.toml
CommitLineData
770a36e5
WB
1[package]
2name = "pbs-tools"
3version = "0.1.0"
4authors = ["Proxmox Support Team <support@proxmox.com>"]
d9f1ca9a 5edition = "2021"
770a36e5
WB
6description = "common tools used throughout pbs"
7
8# This must not depend on any subcrates more closely related to pbs itself.
9[dependencies]
10anyhow = "1.0"
daaeea8b 11base64 = "0.13"
2b7f8dd5
WB
12bytes = "1.0"
13crc32fast = "1"
14endian_trait = { version = "0.6", features = ["arrays"] }
15flate2 = "1.0"
4805edc4
WB
16foreign-types = "0.3"
17futures = "0.3"
6ef1b649 18hex = "0.4.3"
4805edc4 19lazy_static = "1.4"
770a36e5 20libc = "0.2"
9c75e2f3 21log = "0.4.17"
11ca8343 22nix = "0.24"
6512017f 23nom = "7"
ba0ccc59 24openssl = "0.10"
9eb78407 25percent-encoding = "2.1"
c3b8e74f 26regex = "1.5"
770a36e5
WB
27serde = "1.0"
28serde_json = "1.0"
4805edc4 29# rt-multi-thread is required for block_in_place
2b7f8dd5 30tokio = { version = "1.6", features = [ "fs", "io-util", "rt", "rt-multi-thread", "sync" ] }
9eb78407 31url = "2.1"
2b7f8dd5 32walkdir = "2"
6c76aa43 33zstd = { version = "0.6", features = [ "bindgen" ] }
770a36e5 34
25877d05 35#proxmox = { version = "0.15.3", default-features = false, features = [ "tokio" ] }
9c890d72 36proxmox-async = "0.4"
6ef1b649 37proxmox-io = { version = "1", features = [ "tokio" ] }
229c1788 38proxmox-lang = { version = "1.1" }
6ef1b649 39proxmox-time = { version = "1" }
5c7ff2af 40proxmox-sys = "0.4.1"
4805edc4
WB
41
42pbs-buildcfg = { path = "../pbs-buildcfg" }
a58a5cf7 43pbs-api-types = { path = "../pbs-api-types" }
a3399f43
WB
44
45[dev-dependencies]
46tokio = { version = "1.6", features = [ "macros" ] }