]> git.proxmox.com Git - proxmox-backup.git/blob - Cargo.toml
src/bin/proxmox-backup-client.rs: use new output formath helpers from proxmox 0.15.1-1
[proxmox-backup.git] / Cargo.toml
1 [package]
2 name = "proxmox-backup"
3 version = "0.1.2"
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.10"
18 bytes = "0.5"
19 chrono = "0.4" # Date and time library for Rust
20 crc32fast = "1"
21 endian_trait = { version = "0.6", features = ["arrays"] }
22 failure = "0.1"
23 futures = "0.3"
24 h2 = { version = "0.2", features = ["stream"] }
25 http = "0.2"
26 hyper = "0.13"
27 lazy_static = "1.4"
28 libc = "0.2"
29 log = "0.4"
30 native-tls = "0.2"
31 nix = "0.16"
32 openssl = "0.10"
33 pam = "0.7"
34 pam-sys = "0.5"
35 percent-encoding = "2.1"
36 pin-utils = "0.1.0-alpha"
37 proxmox = { version = "0.1.15", features = [ "sortable-macro", "api-macro" ] }
38 #proxmox = { git = "ssh://gitolite3@proxdev.maurer-it.com/rust/proxmox", version = "0.1.2", features = [ "sortable-macro", "api-macro" ] }
39 #proxmox = { path = "../proxmox/proxmox", features = [ "sortable-macro", "api-macro" ] }
40 regex = "1.2"
41 rustyline = "5.0.5"
42 serde = { version = "1.0", features = ["derive"] }
43 serde_json = "1.0"
44 siphasher = "0.3"
45 syslog = "4.0"
46 tokio = { version = "0.2.9", features = [ "blocking", "fs", "io-util", "macros", "rt-threaded", "signal", "stream", "tcp", "time", "uds" ] }
47 tokio-openssl = "0.4.0"
48 tokio-util = { version = "0.2.0", features = [ "codec" ] }
49 tower-service = "0.3.0"
50 url = "2.1"
51 #valgrind_request = { git = "https://github.com/edef1c/libvalgrind_request", version = "1.1.0", optional = true }
52 walkdir = "2"
53 xdg = "2.2"
54 zstd = { version = "0.4", features = [ "bindgen" ] }
55
56 [features]
57 default = []
58 #valgrind = ["valgrind_request"]