]> git.proxmox.com Git - proxmox-backup.git/blob - Cargo.toml
buildsys: fix targets to not run dpkg-buildpackage 4 times
[proxmox-backup.git] / Cargo.toml
1 [package]
2 name = "proxmox-backup"
3 version = "0.8.7"
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 base64 = "0.12"
18 bitflags = "1.2.1"
19 bytes = "0.5"
20 chrono = "0.4" # Date and time library for Rust
21 crc32fast = "1"
22 endian_trait = { version = "0.6", features = ["arrays"] }
23 anyhow = "1.0"
24 futures = "0.3"
25 h2 = { version = "0.2", features = ["stream"] }
26 handlebars = "3.0"
27 http = "0.2"
28 hyper = "0.13"
29 lazy_static = "1.4"
30 libc = "0.2"
31 log = "0.4"
32 nix = "0.16"
33 num-traits = "0.2"
34 once_cell = "1.3.1"
35 openssl = "0.10"
36 pam = "0.7"
37 pam-sys = "0.5"
38 percent-encoding = "2.1"
39 pin-utils = "0.1.0"
40 pathpatterns = "0.1.2"
41 proxmox = { version = "0.2.0", features = [ "sortable-macro", "api-macro" ] }
42 #proxmox = { git = "ssh://gitolite3@proxdev.maurer-it.com/rust/proxmox", version = "0.1.2", features = [ "sortable-macro", "api-macro" ] }
43 #proxmox = { path = "../proxmox/proxmox", features = [ "sortable-macro", "api-macro" ] }
44 proxmox-fuse = "0.1.0"
45 pxar = { version = "0.2.0", features = [ "tokio-io", "futures-io" ] }
46 #pxar = { path = "../pxar", features = [ "tokio-io", "futures-io" ] }
47 regex = "1.2"
48 rustyline = "6"
49 serde = { version = "1.0", features = ["derive"] }
50 serde_json = "1.0"
51 siphasher = "0.3"
52 syslog = "4.0"
53 tokio = { version = "0.2.9", features = [ "blocking", "fs", "io-util", "macros", "rt-threaded", "signal", "stream", "tcp", "time", "uds" ] }
54 tokio-openssl = "0.4.0"
55 tokio-util = { version = "0.3", features = [ "codec" ] }
56 tower-service = "0.3.0"
57 udev = "0.3"
58 url = "2.1"
59 #valgrind_request = { git = "https://github.com/edef1c/libvalgrind_request", version = "1.1.0", optional = true }
60 walkdir = "2"
61 xdg = "2.2"
62 zstd = { version = "0.4", features = [ "bindgen" ] }
63 nom = "5.1"
64
65 [features]
66 default = []
67 #valgrind = ["valgrind_request"]