]> git.proxmox.com Git - proxmox-backup.git/blob - Cargo.toml
update a chunk of stuff to the hyper release
[proxmox-backup.git] / Cargo.toml
1 [package]
2 name = "proxmox-backup"
3 version = "0.1.0"
4 authors = ["Dietmar Maurer <dietmar@proxmox.com>"]
5 edition = "2018"
6
7 [lib]
8 name = "proxmox_backup"
9 path = "src/lib.rs"
10
11 [dependencies]
12 base64 = "0.10"
13 bytes = "0.5"
14 chrono = "0.4" # Date and time library for Rust
15 crc32fast = "1"
16 endian_trait = { version = "0.6", features = ["arrays"] }
17 failure = "0.1"
18 futures = "0.3"
19 h2 = { version = "0.2", features = ["stream"] }
20 http = "0.2"
21 hyper = "0.13"
22 lazy_static = "1.3"
23 libc = "0.2"
24 log = "0.4"
25 native-tls = "0.2"
26 nix = "0.15"
27 openssl = "0.10"
28 pam = "0.7"
29 pam-sys = "0.5"
30 pin-utils = "0.1.0-alpha"
31 proxmox = { git = "ssh://gitolite3@proxdev.maurer-it.com/rust/proxmox", version = "0.1", features = [ "sortable-macro", "api-macro" ] }
32 regex = "1.0"
33 rustyline = "5.0.4"
34 serde = { version = "1.0", features = ["derive"] }
35 serde_json = "1.0"
36 siphasher = "0.3"
37 syslog = "4.0"
38 tokio = { version = "0.2.0", features = [ "blocking", "fs", "io-util", "macros", "rt-threaded", "signal", "stream", "tcp", "time", "uds" ] }
39 tokio-util = { version = "0.2.0", features = [ "codec" ] }
40 tokio-openssl = "0.4.0"
41 tower-service = "0.3.0"
42 url = "1.7"
43 valgrind_request = { version = "1.1", optional = true }
44 walkdir = "2"
45 xdg = "2.2"
46 zstd = "0.4"
47
48 [features]
49 default = []
50 valgrind = ["valgrind_request"]
51
52 [replace]
53 "zstd-sys:1.4.13" = { path = "zstd-sys" }