]> git.proxmox.com Git - proxmox-backup.git/blob - Cargo.toml
api2/tape/restore: return backup manifest in try_restore_snapshot_archive
[proxmox-backup.git] / Cargo.toml
1 [package]
2 name = "proxmox-backup"
3 version = "1.1.6"
4 authors = [
5 "Dietmar Maurer <dietmar@proxmox.com>",
6 "Dominik Csapak <d.csapak@proxmox.com>",
7 "Christian Ebner <c.ebner@proxmox.com>",
8 "Fabian Grünbichler <f.gruenbichler@proxmox.com>",
9 "Stefan Reiter <s.reiter@proxmox.com>",
10 "Thomas Lamprecht <t.lamprecht@proxmox.com>",
11 "Wolfgang Bumiller <w.bumiller@proxmox.com>",
12 "Proxmox Support Team <support@proxmox.com>",
13 ]
14 edition = "2018"
15 license = "AGPL-3"
16 description = "Proxmox Backup"
17 homepage = "https://www.proxmox.com"
18 build = "build.rs"
19
20 exclude = [ "build", "debian", "tests/catar_data/test_symlink/symlink1"]
21
22 [lib]
23 name = "proxmox_backup"
24 path = "src/lib.rs"
25
26 [dependencies]
27 apt-pkg-native = "0.3.2"
28 base64 = "0.12"
29 bitflags = "1.2.1"
30 bytes = "1.0"
31 crc32fast = "1"
32 endian_trait = { version = "0.6", features = ["arrays"] }
33 env_logger = "0.7"
34 flate2 = "1.0"
35 anyhow = "1.0"
36 foreign-types = "0.3"
37 thiserror = "1.0"
38 futures = "0.3"
39 h2 = { version = "0.3", features = [ "stream" ] }
40 handlebars = "3.0"
41 http = "0.2"
42 hyper = { version = "0.14", features = [ "full" ] }
43 lazy_static = "1.4"
44 libc = "0.2"
45 log = "0.4"
46 nix = "0.19.1"
47 num-traits = "0.2"
48 once_cell = "1.3.1"
49 openssl = "0.10"
50 pam = "0.7"
51 pam-sys = "0.5"
52 percent-encoding = "2.1"
53 pin-utils = "0.1.0"
54 pin-project = "1.0"
55 pathpatterns = "0.1.2"
56 proxmox = { version = "0.11.3", features = [ "sortable-macro", "api-macro", "websocket" ] }
57 #proxmox = { git = "git://git.proxmox.com/git/proxmox", version = "0.1.2", features = [ "sortable-macro", "api-macro" ] }
58 #proxmox = { path = "../proxmox/proxmox", features = [ "sortable-macro", "api-macro", "websocket" ] }
59 proxmox-fuse = "0.1.1"
60 pxar = { version = "0.10.1", features = [ "tokio-io" ] }
61 #pxar = { path = "../pxar", features = [ "tokio-io" ] }
62 regex = "1.2"
63 rustyline = "7"
64 serde = { version = "1.0", features = ["derive"] }
65 serde_json = "1.0"
66 siphasher = "0.3"
67 syslog = "4.0"
68 tokio = { version = "1.0", features = [ "fs", "io-util", "io-std", "macros", "net", "parking_lot", "process", "rt", "rt-multi-thread", "signal", "time" ] }
69 tokio-openssl = "0.6.1"
70 tokio-stream = "0.1.0"
71 tokio-util = { version = "0.6", features = [ "codec", "io" ] }
72 tower-service = "0.3.0"
73 udev = ">= 0.3, <0.5"
74 url = "2.1"
75 #valgrind_request = { git = "https://github.com/edef1c/libvalgrind_request", version = "1.1.0", optional = true }
76 walkdir = "2"
77 webauthn-rs = "0.2.5"
78 xdg = "2.2"
79 zstd = { version = "0.4", features = [ "bindgen" ] }
80 nom = "5.1"
81 crossbeam-channel = "0.5"
82
83 proxmox-acme-rs = "0.2.1"
84
85 [features]
86 default = []
87 #valgrind = ["valgrind_request"]