]> git.proxmox.com Git - proxmox-backup.git/blame - Cargo.toml
switch to debcargo for generating d/control
[proxmox-backup.git] / Cargo.toml
CommitLineData
d8d978eb 1[package]
fe0e04c6 2name = "proxmox-backup"
06440889 3version = "0.1.2"
d8d978eb 4authors = ["Dietmar Maurer <dietmar@proxmox.com>"]
763220ce 5edition = "2018"
e881b8a5
FG
6license = "AGPL-3"
7description = "Proxmox Backup"
8homepage = "https://www.proxmox.com"
9
10exclude = [ "build", "debian", "tests/catar_data/test_symlink/symlink1"]
d6a4ba71
DM
11
12[lib]
fe0e04c6 13name = "proxmox_backup"
d6a4ba71 14path = "src/lib.rs"
d6a4ba71 15
d8d978eb 16[dependencies]
43597bf3 17base64 = "0.10"
db0cb9ce 18bytes = "0.5"
43597bf3
WB
19chrono = "0.4" # Date and time library for Rust
20crc32fast = "1"
21endian_trait = { version = "0.6", features = ["arrays"] }
22failure = "0.1"
db0cb9ce
WB
23futures = "0.3"
24h2 = { version = "0.2", features = ["stream"] }
25http = "0.2"
26hyper = "0.13"
ceced407 27lazy_static = "1.4"
08481a0b 28libc = "0.2"
43597bf3 29log = "0.4"
43597bf3 30native-tls = "0.2"
8bf4559b 31nix = "0.16"
832d805c 32openssl = "0.10"
43597bf3
WB
33pam = "0.7"
34pam-sys = "0.5"
8a1028e0 35percent-encoding = "2.1"
43597bf3 36pin-utils = "0.1.0-alpha"
3f06d6fb 37proxmox = { version = "0.1.5", features = [ "sortable-macro", "api-macro" ] }
7d239685
TL
38#proxmox = { git = "ssh://gitolite3@proxdev.maurer-it.com/rust/proxmox", version = "0.1.2", features = [ "sortable-macro", "api-macro" ] }
39#proxmox = { path = "../proxmox/proxmox", features = [ "sortable-macro", "api-macro" ] }
ceced407
FG
40regex = "1.2"
41rustyline = "5.0.5"
43597bf3
WB
42serde = { version = "1.0", features = ["derive"] }
43serde_json = "1.0"
46b6fbd6 44siphasher = "0.3"
43597bf3 45syslog = "4.0"
dbd3e5da 46tokio = { version = "0.2.9", features = [ "blocking", "fs", "io-util", "macros", "rt-threaded", "signal", "stream", "tcp", "time", "uds" ] }
db0cb9ce 47tokio-openssl = "0.4.0"
8a1028e0 48tokio-util = { version = "0.2.0", features = [ "codec" ] }
db0cb9ce 49tower-service = "0.3.0"
8a1028e0 50url = "2.1"
e881b8a5 51#valgrind_request = { git = "https://github.com/edef1c/libvalgrind_request", version = "1.1.0", optional = true }
95cea65b 52walkdir = "2"
6716f30b 53xdg = "2.2"
7a00f8df 54zstd = { version = "0.4", features = [ "bindgen" ] }
9cdda3f7
WB
55
56[features]
57default = []
e881b8a5 58#valgrind = ["valgrind_request"]