]> git.proxmox.com Git - proxmox-backup.git/blame - Cargo.toml
api2/access: implement term ticket
[proxmox-backup.git] / Cargo.toml
CommitLineData
d8d978eb 1[package]
fe0e04c6 2name = "proxmox-backup"
4a55fa87 3version = "0.8.7"
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]
a4e86972 17apt-pkg-native = "0.3.1" # custom patched version
2e686e0a 18base64 = "0.12"
10effc98 19bitflags = "1.2.1"
db0cb9ce 20bytes = "0.5"
43597bf3
WB
21chrono = "0.4" # Date and time library for Rust
22crc32fast = "1"
23endian_trait = { version = "0.6", features = ["arrays"] }
f7d4e4b5 24anyhow = "1.0"
db0cb9ce
WB
25futures = "0.3"
26h2 = { version = "0.2", features = ["stream"] }
f9e3b110 27handlebars = "3.0"
db0cb9ce
WB
28http = "0.2"
29hyper = "0.13"
ceced407 30lazy_static = "1.4"
08481a0b 31libc = "0.2"
43597bf3 32log = "0.4"
8bf4559b 33nix = "0.16"
ba974798 34num-traits = "0.2"
10effc98 35once_cell = "1.3.1"
832d805c 36openssl = "0.10"
43597bf3
WB
37pam = "0.7"
38pam-sys = "0.5"
8a1028e0 39percent-encoding = "2.1"
b4a85a3f 40pin-utils = "0.1.0"
62f6a7e3 41pathpatterns = "0.1.2"
660a3489 42proxmox = { version = "0.2.0", features = [ "sortable-macro", "api-macro" ] }
7d239685 43#proxmox = { git = "ssh://gitolite3@proxdev.maurer-it.com/rust/proxmox", version = "0.1.2", features = [ "sortable-macro", "api-macro" ] }
9825748e 44#proxmox = { path = "../proxmox/proxmox", features = [ "sortable-macro", "api-macro" ] }
ab109239 45proxmox-fuse = "0.1.0"
ba5b8a3e 46pxar = { version = "0.2.1", features = [ "tokio-io", "futures-io" ] }
ab109239 47#pxar = { path = "../pxar", features = [ "tokio-io", "futures-io" ] }
ceced407 48regex = "1.2"
2e686e0a 49rustyline = "6"
43597bf3
WB
50serde = { version = "1.0", features = ["derive"] }
51serde_json = "1.0"
46b6fbd6 52siphasher = "0.3"
43597bf3 53syslog = "4.0"
dbd3e5da 54tokio = { version = "0.2.9", features = [ "blocking", "fs", "io-util", "macros", "rt-threaded", "signal", "stream", "tcp", "time", "uds" ] }
db0cb9ce 55tokio-openssl = "0.4.0"
2e686e0a 56tokio-util = { version = "0.3", features = [ "codec" ] }
db0cb9ce 57tower-service = "0.3.0"
295d4f41 58udev = ">= 0.3, <0.5"
8a1028e0 59url = "2.1"
e881b8a5 60#valgrind_request = { git = "https://github.com/edef1c/libvalgrind_request", version = "1.1.0", optional = true }
95cea65b 61walkdir = "2"
6716f30b 62xdg = "2.2"
7a00f8df 63zstd = { version = "0.4", features = [ "bindgen" ] }
2ebdbac1 64nom = "5.1"
9cdda3f7
WB
65
66[features]
67default = []
e881b8a5 68#valgrind = ["valgrind_request"]