]> git.proxmox.com Git - proxmox-backup.git/blob - Cargo.toml
update tokio to 0.2.9
[proxmox-backup.git] / Cargo.toml
1 [package]
2 name = "proxmox-backup"
3 version = "0.1.2"
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.4"
23 libc = "0.2"
24 log = "0.4"
25 native-tls = "0.2"
26 nix = "0.16"
27 openssl = "0.10"
28 pam = "0.7"
29 pam-sys = "0.5"
30 percent-encoding = "2.1"
31 pin-utils = "0.1.0-alpha"
32 proxmox = { version = "0.1.4", features = [ "sortable-macro", "api-macro" ] }
33 #proxmox = { git = "ssh://gitolite3@proxdev.maurer-it.com/rust/proxmox", version = "0.1.2", features = [ "sortable-macro", "api-macro" ] }
34 #proxmox = { path = "../proxmox/proxmox", features = [ "sortable-macro", "api-macro" ] }
35 regex = "1.2"
36 rustyline = "5.0.5"
37 serde = { version = "1.0", features = ["derive"] }
38 serde_json = "1.0"
39 siphasher = "0.3"
40 syslog = "4.0"
41 tokio = { version = "0.2.9", features = [ "blocking", "fs", "io-util", "macros", "rt-threaded", "signal", "stream", "tcp", "time", "uds" ] }
42 tokio-openssl = "0.4.0"
43 tokio-util = { version = "0.2.0", features = [ "codec" ] }
44 tower-service = "0.3.0"
45 url = "2.1"
46 valgrind_request = { git = "https://github.com/edef1c/libvalgrind_request", version = "1.1.0", optional = true }
47 walkdir = "2"
48 xdg = "2.2"
49 zstd = { version = "0.4", features = [ "bindgen" ] }
50
51 [features]
52 default = []
53 valgrind = ["valgrind_request"]