proxmox-backup/Cargo.toml
Wolfgang Bumiller 7d83440c60 remove proxmox-protocol subcrate
AFAICT we have no use for it anymore, its api entry points
are gone. If we do end up needing something from it, it's
still in the git history anyway. (And about two thirds of it
can be made much less awkward by utilizing async-await
anyway, so no love lost there...)

Moved the chunker back into src/backup/chunker.rs

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
2019-08-22 14:08:25 +02:00

59 lines
1.2 KiB
TOML

[package]
name = "proxmox-backup"
version = "0.1.0"
authors = ["Dietmar Maurer <dietmar@proxmox.com>"]
edition = "2018"
[lib]
name = "proxmox_backup"
path = "src/lib.rs"
[dependencies]
proxmox = { git = "ssh://gitolite3@proxdev.maurer-it.com/rust/proxmox", version = "0.1" }
log = "0.4"
syslog = "4.0"
failure = "0.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
url = "1.7"
futures = "0.1"
bytes = "0.4"
tokio-threadpool = "0.1"
tokio = "0.1"
tokio-fs = "0.1"
tokio-openssl = "0.3"
tokio-signal = "0.2"
native-tls = "0.2"
http = "0.1"
h2 = "0.1"
hyper = "0.12"
hyper-openssl = "0.7"
lazy_static = "1.1"
regex = "1.0"
libc = "0.2"
nix = "0.15"
shellwords = "1.0"
uuid = { version = "0.7", features = ["v4"] }
chrono = "0.4" # Date and time library for Rust
openssl = "0.10"
siphasher = "0.3"
endian_trait = { version = "0.6", features = ["arrays"] }
walkdir = "2"
md5 = "0.6"
base64 = "0.10"
pam-sys = "0.5"
pam = "0.7"
zstd = "0.4"
xdg = "2.2"
mio = "0.6"
valgrind_request = { version = "1.1", optional = true }
textwrap = "0.11"
crc32fast = "1"
[features]
default = []
valgrind = ["valgrind_request"]
[replace]
"zstd-sys:1.4.10" = { path = "zstd-sys" }