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