]> git.proxmox.com Git - proxmox-backup.git/blob - Cargo.toml
ui: tfa: rework removal confirmation dialog
[proxmox-backup.git] / Cargo.toml
1 [package]
2 name = "proxmox-backup"
3 version = "1.0.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
19 exclude = [ "build", "debian", "tests/catar_data/test_symlink/symlink1"]
20
21 [lib]
22 name = "proxmox_backup"
23 path = "src/lib.rs"
24
25 [dependencies]
26 apt-pkg-native = "0.3.1" # custom patched version
27 base64 = "0.12"
28 bitflags = "1.2.1"
29 bytes = "1.0"
30 crc32fast = "1"
31 endian_trait = { version = "0.6", features = ["arrays"] }
32 anyhow = "1.0"
33 futures = "0.3"
34 h2 = { version = "0.3", features = [ "stream" ] }
35 handlebars = "3.0"
36 http = "0.2"
37 hyper = { version = "0.14", features = [ "full" ] }
38 lazy_static = "1.4"
39 libc = "0.2"
40 log = "0.4"
41 nix = "0.19.1"
42 num-traits = "0.2"
43 once_cell = "1.3.1"
44 openssl = "0.10"
45 pam = "0.7"
46 pam-sys = "0.5"
47 percent-encoding = "2.1"
48 pin-utils = "0.1.0"
49 pin-project = "1.0"
50 pathpatterns = "0.1.2"
51 proxmox = { version = "0.10.0", features = [ "sortable-macro", "api-macro", "websocket" ] }
52 #proxmox = { git = "git://git.proxmox.com/git/proxmox", version = "0.1.2", features = [ "sortable-macro", "api-macro" ] }
53 #proxmox = { path = "../proxmox/proxmox", features = [ "sortable-macro", "api-macro", "websocket" ] }
54 proxmox-fuse = "0.1.1"
55 pxar = { version = "0.7.0", features = [ "tokio-io" ] }
56 #pxar = { path = "../pxar", features = [ "tokio-io" ] }
57 regex = "1.2"
58 rustyline = "7"
59 serde = { version = "1.0", features = ["derive"] }
60 serde_json = "1.0"
61 siphasher = "0.3"
62 syslog = "4.0"
63 tokio = { version = "1.0", features = [ "fs", "io-util", "macros", "net", "parking_lot", "process", "rt", "rt-multi-thread", "signal", "time" ] }
64 tokio-openssl = "0.6.1"
65 tokio-stream = "0.1.0"
66 tokio-util = { version = "0.6", features = [ "codec" ] }
67 tower-service = "0.3.0"
68 udev = ">= 0.3, <0.5"
69 url = "2.1"
70 #valgrind_request = { git = "https://github.com/edef1c/libvalgrind_request", version = "1.1.0", optional = true }
71 walkdir = "2"
72 webauthn-rs = "0.2.5"
73 xdg = "2.2"
74 zstd = { version = "0.4", features = [ "bindgen" ] }
75 nom = "5.1"
76 crossbeam-channel = "0.5"
77
78 [features]
79 default = []
80 #valgrind = ["valgrind_request"]