]> git.proxmox.com Git - proxmox-backup.git/blame - Cargo.toml
tools: http: add simple general post method
[proxmox-backup.git] / Cargo.toml
CommitLineData
d8d978eb 1[package]
fe0e04c6 2name = "proxmox-backup"
39cd81de 3version = "0.9.1"
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
21crc32fast = "1"
22endian_trait = { version = "0.6", features = ["arrays"] }
f7d4e4b5 23anyhow = "1.0"
db0cb9ce
WB
24futures = "0.3"
25h2 = { version = "0.2", features = ["stream"] }
f9e3b110 26handlebars = "3.0"
db0cb9ce 27http = "0.2"
cf9ea3c4 28hyper = "0.13.6"
ceced407 29lazy_static = "1.4"
08481a0b 30libc = "0.2"
43597bf3 31log = "0.4"
0c4c6a7b 32nix = "0.19"
ba974798 33num-traits = "0.2"
10effc98 34once_cell = "1.3.1"
832d805c 35openssl = "0.10"
43597bf3
WB
36pam = "0.7"
37pam-sys = "0.5"
8a1028e0 38percent-encoding = "2.1"
b4a85a3f 39pin-utils = "0.1.0"
62f6a7e3 40pathpatterns = "0.1.2"
41255b4d 41proxmox = { version = "0.5.0", features = [ "sortable-macro", "api-macro", "websocket" ] }
b13da548 42#proxmox = { git = "git://git.proxmox.com/git/proxmox", version = "0.1.2", features = [ "sortable-macro", "api-macro" ] }
1c2f842a 43#proxmox = { path = "../proxmox/proxmox", features = [ "sortable-macro", "api-macro", "websocket" ] }
ab109239 44proxmox-fuse = "0.1.0"
9cebc837 45pxar = { version = "0.6.1", features = [ "tokio-io", "futures-io" ] }
ab109239 46#pxar = { path = "../pxar", features = [ "tokio-io", "futures-io" ] }
ceced407 47regex = "1.2"
2e686e0a 48rustyline = "6"
43597bf3
WB
49serde = { version = "1.0", features = ["derive"] }
50serde_json = "1.0"
46b6fbd6 51siphasher = "0.3"
43597bf3 52syslog = "4.0"
1c2f842a 53tokio = { version = "0.2.9", features = [ "blocking", "fs", "dns", "io-util", "macros", "process", "rt-threaded", "signal", "stream", "tcp", "time", "uds" ] }
db0cb9ce 54tokio-openssl = "0.4.0"
2e686e0a 55tokio-util = { version = "0.3", features = [ "codec" ] }
db0cb9ce 56tower-service = "0.3.0"
295d4f41 57udev = ">= 0.3, <0.5"
8a1028e0 58url = "2.1"
e881b8a5 59#valgrind_request = { git = "https://github.com/edef1c/libvalgrind_request", version = "1.1.0", optional = true }
95cea65b 60walkdir = "2"
6716f30b 61xdg = "2.2"
7a00f8df 62zstd = { version = "0.4", features = [ "bindgen" ] }
2ebdbac1 63nom = "5.1"
51054477 64crossbeam-channel = "0.4"
9cdda3f7
WB
65
66[features]
67default = []
e881b8a5 68#valgrind = ["valgrind_request"]