]> git.proxmox.com Git - proxmox-backup.git/blame - Cargo.toml
update to tokio 0.2.0-alpha.4
[proxmox-backup.git] / Cargo.toml
CommitLineData
d8d978eb 1[package]
fe0e04c6 2name = "proxmox-backup"
d8d978eb
DM
3version = "0.1.0"
4authors = ["Dietmar Maurer <dietmar@proxmox.com>"]
763220ce 5edition = "2018"
d6a4ba71
DM
6
7[lib]
fe0e04c6 8name = "proxmox_backup"
d6a4ba71 9path = "src/lib.rs"
d6a4ba71 10
d8d978eb 11[dependencies]
43597bf3 12base64 = "0.10"
cf639a47 13bytes = "0.4"
43597bf3
WB
14chrono = "0.4" # Date and time library for Rust
15crc32fast = "1"
16endian_trait = { version = "0.6", features = ["arrays"] }
17failure = "0.1"
18futures-preview = "0.3.0-alpha"
19h2 = { version = "0.2.0-alpha", git = "https://github.com/hyperium/h2", features = ["stream"] }
832d805c 20http = "0.1"
43597bf3 21hyper = { version = "0.13.0-a.0", git = "https://github.com/hyperium/hyper" }
43597bf3 22lazy_static = "1.3"
08481a0b 23libc = "0.2"
43597bf3
WB
24log = "0.4"
25md5 = "0.6"
26mio = "0.6"
27native-tls = "0.2"
170535ad 28nix = "0.15"
832d805c 29openssl = "0.10"
43597bf3
WB
30pam = "0.7"
31pam-sys = "0.5"
32pin-utils = "0.1.0-alpha"
33proxmox = { git = "ssh://gitolite3@proxdev.maurer-it.com/rust/proxmox", version = "0.1" }
34regex = "1.0"
35serde = { version = "1.0", features = ["derive"] }
36serde_json = "1.0"
37shellwords = "1.0"
46b6fbd6 38siphasher = "0.3"
43597bf3
WB
39syslog = "4.0"
40textwrap = "0.11"
083ff3fd
WB
41tokio = { version = "0.2.0-alpha.4" }
42tokio-executor = { version = "0.2.0-alpha.4" }
43tokio-net = { version = "0.2.0-alpha.4", features = ["signal"] }
43597bf3
WB
44tokio-openssl = "0.4.0-alpha.2"
45tower-service = "0.3.0-alpha.1"
46url = "1.7"
47uuid = { version = "0.7", features = ["v4"] }
48valgrind_request = { version = "1.1", optional = true }
95cea65b 49walkdir = "2"
6716f30b 50xdg = "2.2"
43597bf3 51zstd = "0.4"
9cdda3f7
WB
52
53[features]
54default = []
55valgrind = ["valgrind_request"]
d04c67b8
WB
56
57[replace]
26c945d3 58"zstd-sys:1.4.13" = { path = "zstd-sys" }