]> git.proxmox.com Git - proxmox-backup.git/blobdiff - Cargo.toml
update to tokio 0.2.0-alpha.4
[proxmox-backup.git] / Cargo.toml
index 0996a3b505d574ddea5e5216c0e22cfd102a8f85..bec61bb63d05b86dd88db471448211d383f5f60b 100644 (file)
@@ -9,40 +9,50 @@ name = "proxmox_backup"
 path = "src/lib.rs"
 
 [dependencies]
-proxmox-protocol = { path = "proxmox-protocol" }
-log = "0.4"
-syslog = "4.0"
+base64 = "0.10"
+bytes = "0.4"
+chrono = "0.4" # Date and time library for Rust
+crc32fast = "1"
+endian_trait = { version = "0.6", features = ["arrays"] }
 failure = "0.1"
-serde = "1.0"
-serde_json = "1.0"
-serde_derive = "1.0"
-url = "1.7"
-futures = "0.1"
-tokio-threadpool = "0.1"
-tokio = "0.1"
-tokio-fs = "0.1"
-tokio-tls = "0.2.1"
-native-tls = "0.2.2"
+futures-preview = "0.3.0-alpha"
+h2 = { version = "0.2.0-alpha", git = "https://github.com/hyperium/h2", features = ["stream"] }
 http = "0.1"
-hyper = "0.12"
-hyper-tls = "0.3"
-lazy_static = "1.1"
-regex = "1.0"
+hyper = { version = "0.13.0-a.0", git = "https://github.com/hyperium/hyper" }
+lazy_static = "1.3"
 libc = "0.2"
-nix = "0.12"
-shellwords = "1.0"
-uuid = { version = "0.7", features = ["v4"] }
-chrono = "0.4" # Date and time library for Rust
+log = "0.4"
+md5 = "0.6"
+mio = "0.6"
+native-tls = "0.2"
+nix = "0.15"
 openssl = "0.10"
+pam = "0.7"
+pam-sys = "0.5"
+pin-utils = "0.1.0-alpha"
+proxmox = { git = "ssh://gitolite3@proxdev.maurer-it.com/rust/proxmox", version = "0.1" }
+regex = "1.0"
+serde = { version = "1.0", features = ["derive"] }
+serde_json = "1.0"
+shellwords = "1.0"
 siphasher = "0.3"
-endian_trait = "0.6"
+syslog = "4.0"
+textwrap = "0.11"
+tokio = { version = "0.2.0-alpha.4" }
+tokio-executor = { version = "0.2.0-alpha.4" }
+tokio-net = { version = "0.2.0-alpha.4", features = ["signal"] }
+tokio-openssl = "0.4.0-alpha.2"
+tower-service = "0.3.0-alpha.1"
+url = "1.7"
+uuid = { version = "0.7", features = ["v4"] }
+valgrind_request = { version = "1.1", optional = true }
 walkdir = "2"
-md5 = "0.6"
-base64 = "0.10"
-pam-sys = "0.5"
-pam = "0.7"
-zstd = "0.4"
 xdg = "2.2"
+zstd = "0.4"
+
+[features]
+default = []
+valgrind = ["valgrind_request"]
 
-[patch.crates-io]
-lz4-sys = { path = "lz4-rs/lz4-sys" }
+[replace]
+"zstd-sys:1.4.13" = { path = "zstd-sys" }