]> git.proxmox.com Git - proxmox-backup.git/blob - Cargo.toml
bec61bb63d05b86dd88db471448211d383f5f60b
[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.4"
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-preview = "0.3.0-alpha"
19 h2 = { version = "0.2.0-alpha", git = "https://github.com/hyperium/h2", features = ["stream"] }
20 http = "0.1"
21 hyper = { version = "0.13.0-a.0", git = "https://github.com/hyperium/hyper" }
22 lazy_static = "1.3"
23 libc = "0.2"
24 log = "0.4"
25 md5 = "0.6"
26 mio = "0.6"
27 native-tls = "0.2"
28 nix = "0.15"
29 openssl = "0.10"
30 pam = "0.7"
31 pam-sys = "0.5"
32 pin-utils = "0.1.0-alpha"
33 proxmox = { git = "ssh://gitolite3@proxdev.maurer-it.com/rust/proxmox", version = "0.1" }
34 regex = "1.0"
35 serde = { version = "1.0", features = ["derive"] }
36 serde_json = "1.0"
37 shellwords = "1.0"
38 siphasher = "0.3"
39 syslog = "4.0"
40 textwrap = "0.11"
41 tokio = { version = "0.2.0-alpha.4" }
42 tokio-executor = { version = "0.2.0-alpha.4" }
43 tokio-net = { version = "0.2.0-alpha.4", features = ["signal"] }
44 tokio-openssl = "0.4.0-alpha.2"
45 tower-service = "0.3.0-alpha.1"
46 url = "1.7"
47 uuid = { version = "0.7", features = ["v4"] }
48 valgrind_request = { version = "1.1", optional = true }
49 walkdir = "2"
50 xdg = "2.2"
51 zstd = "0.4"
52
53 [features]
54 default = []
55 valgrind = ["valgrind_request"]
56
57 [replace]
58 "zstd-sys:1.4.13" = { path = "zstd-sys" }