]> git.proxmox.com Git - proxmox-backup.git/blob - Cargo.toml
depend on proxmox 0.1.34
[proxmox-backup.git] / Cargo.toml
1 [package]
2 name = "proxmox-backup"
3 version = "0.1.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 proxmox = { version = "0.1.34", features = [ "sortable-macro", "api-macro" ] }
40 #proxmox = { git = "ssh://gitolite3@proxdev.maurer-it.com/rust/proxmox", version = "0.1.2", features = [ "sortable-macro", "api-macro" ] }
41 #proxmox = { path = "../proxmox/proxmox", features = [ "sortable-macro", "api-macro" ] }
42 regex = "1.2"
43 rustyline = "6"
44 serde = { version = "1.0", features = ["derive"] }
45 serde_json = "1.0"
46 siphasher = "0.3"
47 syslog = "4.0"
48 tokio = { version = "0.2.9", features = [ "blocking", "fs", "io-util", "macros", "rt-threaded", "signal", "stream", "tcp", "time", "uds" ] }
49 tokio-openssl = "0.4.0"
50 tokio-util = { version = "0.3", features = [ "codec" ] }
51 tower-service = "0.3.0"
52 udev = "0.3"
53 url = "2.1"
54 #valgrind_request = { git = "https://github.com/edef1c/libvalgrind_request", version = "1.1.0", optional = true }
55 walkdir = "2"
56 xdg = "2.2"
57 zstd = { version = "0.4", features = [ "bindgen" ] }
58 nom = "5.1"
59
60 [features]
61 default = []
62 #valgrind = ["valgrind_request"]