]> git.proxmox.com Git - proxmox-backup.git/blob - Cargo.toml
1e32d26d5cd179d02caa7116d8f010c61f5d57d8
[proxmox-backup.git] / Cargo.toml
1 [package]
2 name = "proxmox-backup"
3 version = "0.8.15"
4 authors = ["Dietmar Maurer <dietmar@proxmox.com>"]
5 edition = "2018"
6 license = "AGPL-3"
7 description = "Proxmox Backup"
8 homepage = "https://www.proxmox.com"
9
10 exclude = [ "build", "debian", "tests/catar_data/test_symlink/symlink1"]
11
12 [lib]
13 name = "proxmox_backup"
14 path = "src/lib.rs"
15
16 [dependencies]
17 apt-pkg-native = "0.3.1" # custom patched version
18 base64 = "0.12"
19 bitflags = "1.2.1"
20 bytes = "0.5"
21 chrono = "0.4" # Date and time library for Rust
22 crc32fast = "1"
23 endian_trait = { version = "0.6", features = ["arrays"] }
24 anyhow = "1.0"
25 futures = "0.3"
26 h2 = { version = "0.2", features = ["stream"] }
27 handlebars = "3.0"
28 http = "0.2"
29 hyper = "0.13"
30 lazy_static = "1.4"
31 libc = "0.2"
32 log = "0.4"
33 nix = "0.16"
34 num-traits = "0.2"
35 once_cell = "1.3.1"
36 openssl = "0.10"
37 pam = "0.7"
38 pam-sys = "0.5"
39 percent-encoding = "2.1"
40 pin-utils = "0.1.0"
41 pathpatterns = "0.1.2"
42 proxmox = { version = "0.3.5", features = [ "sortable-macro", "api-macro", "websocket" ] }
43 #proxmox = { git = "ssh://gitolite3@proxdev.maurer-it.com/rust/proxmox", version = "0.1.2", features = [ "sortable-macro", "api-macro" ] }
44 #proxmox = { path = "../proxmox/proxmox", features = [ "sortable-macro", "api-macro", "websocket" ] }
45 proxmox-fuse = "0.1.0"
46 pxar = { version = "0.6.0", features = [ "tokio-io", "futures-io" ] }
47 #pxar = { path = "../pxar", features = [ "tokio-io", "futures-io" ] }
48 regex = "1.2"
49 rustyline = "6"
50 serde = { version = "1.0", features = ["derive"] }
51 serde_json = "1.0"
52 siphasher = "0.3"
53 syslog = "4.0"
54 tokio = { version = "0.2.9", features = [ "blocking", "fs", "dns", "io-util", "macros", "process", "rt-threaded", "signal", "stream", "tcp", "time", "uds" ] }
55 tokio-openssl = "0.4.0"
56 tokio-util = { version = "0.3", features = [ "codec" ] }
57 tower-service = "0.3.0"
58 udev = ">= 0.3, <0.5"
59 url = "2.1"
60 #valgrind_request = { git = "https://github.com/edef1c/libvalgrind_request", version = "1.1.0", optional = true }
61 walkdir = "2"
62 xdg = "2.2"
63 zstd = { version = "0.4", features = [ "bindgen" ] }
64 nom = "5.1"
65
66 [features]
67 default = []
68 #valgrind = ["valgrind_request"]