]> git.proxmox.com Git - proxmox-backup.git/blob - Cargo.toml
ui: ds content: add reload button, use view controller
[proxmox-backup.git] / Cargo.toml
1 [package]
2 name = "proxmox-backup"
3 version = "0.1.0"
4 authors = ["Dietmar Maurer <dietmar@proxmox.com>"]
5 edition = "2018"
6
7 [lib]
8 name = "proxmox_backup"
9 path = "src/lib.rs"
10
11 [dependencies]
12 base64 = "0.10"
13 bytes = "0.5"
14 chrono = "0.4" # Date and time library for Rust
15 crc32fast = "1"
16 endian_trait = { version = "0.6", features = ["arrays"] }
17 failure = "0.1"
18 futures = "0.3"
19 h2 = { version = "0.2", features = ["stream"] }
20 http = "0.2"
21 hyper = "0.13"
22 lazy_static = "1.4"
23 libc = "0.2"
24 log = "0.4"
25 native-tls = "0.2"
26 nix = "0.16"
27 openssl = "0.10"
28 pam = "0.7"
29 pam-sys = "0.5"
30 percent-encoding = "2.1"
31 pin-utils = "0.1.0-alpha"
32 #proxmox = { git = "ssh://gitolite3@proxdev.maurer-it.com/rust/proxmox", version = "0.1", features = [ "sortable-macro", "api-macro" ] }
33 proxmox = { path = "/root/sources/pbs/proxmox/proxmox", version = "0.1", features = [ "sortable-macro", "api-macro" ] }
34 regex = "1.2"
35 rustyline = "5.0.5"
36 serde = { version = "1.0", features = ["derive"] }
37 serde_json = "1.0"
38 siphasher = "0.3"
39 syslog = "4.0"
40 tokio = { version = "0.2.4", features = [ "blocking", "fs", "io-util", "macros", "rt-threaded", "signal", "stream", "tcp", "time", "uds" ] }
41 tokio-openssl = "0.4.0"
42 tokio-util = { version = "0.2.0", features = [ "codec" ] }
43 tower-service = "0.3.0"
44 url = "2.1"
45 valgrind_request = { version = "1.1", optional = true }
46 walkdir = "2"
47 xdg = "2.2"
48 zstd = { version = "0.4", features = [ "bindgen" ] }
49
50 [features]
51 default = []
52 valgrind = ["valgrind_request"]