proxmox-backup/Cargo.toml

60 lines
1.5 KiB
TOML
Raw Normal View History

2018-10-30 09:04:30 +00:00
[package]
2018-12-20 09:32:49 +00:00
name = "proxmox-backup"
2018-10-30 09:04:30 +00:00
version = "0.1.0"
authors = ["Dietmar Maurer <dietmar@proxmox.com>"]
edition = "2018"
2018-10-30 09:40:05 +00:00
[lib]
2018-12-20 09:32:49 +00:00
name = "proxmox_backup"
2018-10-30 09:40:05 +00:00
path = "src/lib.rs"
2018-10-30 09:04:30 +00:00
[dependencies]
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"
futures-preview = "0.3.0-alpha"
h2 = { version = "0.2.0-alpha", git = "https://github.com/hyperium/h2", features = ["stream"] }
2019-01-20 09:06:29 +00:00
http = "0.1"
hyper = { version = "0.13.0-a.0", git = "https://github.com/hyperium/hyper" }
hyper-openssl = { version = "0.7", path = "hyper-openssl" }
lazy_static = "1.3"
2018-12-19 08:51:33 +00:00
libc = "0.2"
log = "0.4"
md5 = "0.6"
mio = "0.6"
native-tls = "0.2"
nix = "0.15"
2019-01-20 09:06:29 +00:00
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"
syslog = "4.0"
textwrap = "0.11"
tokio = { version = "0.2.0-alpha.2" }
tokio-executor = { version = "0.2.0-alpha.2" }
tokio-net = { version = "0.2.0-alpha.2", 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"
xdg = "2.2"
zstd = "0.4"
[features]
default = []
valgrind = ["valgrind_request"]
[replace]
2019-09-02 09:40:22 +00:00
"zstd-sys:1.4.13" = { path = "zstd-sys" }