]> git.proxmox.com Git - proxmox-backup.git/blob - Cargo.toml
6b53cc7c10c691ef85a05902c74aaf66c06d15ed
[proxmox-backup.git] / Cargo.toml
1 [package]
2 name = "proxmox-backup"
3 version = "0.2.3"
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 once_cell = "1.3.1"
34 openssl = "0.10"
35 pam = "0.7"
36 pam-sys = "0.5"
37 percent-encoding = "2.1"
38 pin-utils = "0.1.0"
39 pathpatterns = "0.1.0"
40 proxmox = { version = "0.1.39", features = [ "sortable-macro", "api-macro" ] }
41 #proxmox = { git = "ssh://gitolite3@proxdev.maurer-it.com/rust/proxmox", version = "0.1.2", features = [ "sortable-macro", "api-macro" ] }
42 #proxmox = { path = "../proxmox/proxmox", features = [ "sortable-macro", "api-macro" ] }
43 proxmox-fuse = "0.1.0"
44 pxar = { version = "0.1.6", features = [ "tokio-io", "futures-io" ] }
45 #pxar = { path = "../pxar", features = [ "tokio-io", "futures-io" ] }
46 regex = "1.2"
47 rustyline = "6"
48 serde = { version = "1.0", features = ["derive"] }
49 serde_json = "1.0"
50 siphasher = "0.3"
51 syslog = "4.0"
52 tokio = { version = "0.2.9", features = [ "blocking", "fs", "io-util", "macros", "rt-threaded", "signal", "stream", "tcp", "time", "uds" ] }
53 tokio-openssl = "0.4.0"
54 tokio-util = { version = "0.3", features = [ "codec" ] }
55 tower-service = "0.3.0"
56 udev = "0.3"
57 url = "2.1"
58 #valgrind_request = { git = "https://github.com/edef1c/libvalgrind_request", version = "1.1.0", optional = true }
59 walkdir = "2"
60 xdg = "2.2"
61 zstd = { version = "0.4", features = [ "bindgen" ] }
62 nom = "5.1"
63
64 [features]
65 default = []
66 #valgrind = ["valgrind_request"]