]> git.proxmox.com Git - proxmox-backup.git/blame - Cargo.toml
update a chunk of stuff to the hyper release
[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"
db0cb9ce 13bytes = "0.5"
43597bf3
WB
14chrono = "0.4" # Date and time library for Rust
15crc32fast = "1"
16endian_trait = { version = "0.6", features = ["arrays"] }
17failure = "0.1"
db0cb9ce
WB
18futures = "0.3"
19h2 = { version = "0.2", features = ["stream"] }
20http = "0.2"
21hyper = "0.13"
43597bf3 22lazy_static = "1.3"
08481a0b 23libc = "0.2"
43597bf3 24log = "0.4"
43597bf3 25native-tls = "0.2"
170535ad 26nix = "0.15"
832d805c 27openssl = "0.10"
43597bf3
WB
28pam = "0.7"
29pam-sys = "0.5"
30pin-utils = "0.1.0-alpha"
6486cb85 31proxmox = { git = "ssh://gitolite3@proxdev.maurer-it.com/rust/proxmox", version = "0.1", features = [ "sortable-macro", "api-macro" ] }
43597bf3 32regex = "1.0"
ca60ac13 33rustyline = "5.0.4"
43597bf3
WB
34serde = { version = "1.0", features = ["derive"] }
35serde_json = "1.0"
46b6fbd6 36siphasher = "0.3"
43597bf3 37syslog = "4.0"
db0cb9ce
WB
38tokio = { version = "0.2.0", features = [ "blocking", "fs", "io-util", "macros", "rt-threaded", "signal", "stream", "tcp", "time", "uds" ] }
39tokio-util = { version = "0.2.0", features = [ "codec" ] }
40tokio-openssl = "0.4.0"
41tower-service = "0.3.0"
43597bf3 42url = "1.7"
43597bf3 43valgrind_request = { version = "1.1", optional = true }
95cea65b 44walkdir = "2"
6716f30b 45xdg = "2.2"
43597bf3 46zstd = "0.4"
9cdda3f7
WB
47
48[features]
49default = []
50valgrind = ["valgrind_request"]
d04c67b8
WB
51
52[replace]
26c945d3 53"zstd-sys:1.4.13" = { path = "zstd-sys" }