]> git.proxmox.com Git - proxmox-backup.git/blob - Cargo.toml
b9c31550b296827c0f2a418abad5e475fd8bdeba
[proxmox-backup.git] / Cargo.toml
1 [package]
2 name = "proxmox-backup"
3 version = "2.0.1"
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 [workspace]
23 members = [
24 "pbs-buildcfg",
25 "pbs-runtime",
26 ]
27
28 [lib]
29 name = "proxmox_backup"
30 path = "src/lib.rs"
31
32 [dependencies]
33 apt-pkg-native = "0.3.2"
34 base64 = "0.12"
35 bitflags = "1.2.1"
36 bytes = "1.0"
37 crc32fast = "1"
38 endian_trait = { version = "0.6", features = ["arrays"] }
39 env_logger = "0.7"
40 flate2 = "1.0"
41 anyhow = "1.0"
42 foreign-types = "0.3"
43 thiserror = "1.0"
44 futures = "0.3"
45 h2 = { version = "0.3", features = [ "stream" ] }
46 handlebars = "3.0"
47 http = "0.2"
48 hyper = { version = "0.14", features = [ "full" ] }
49 lazy_static = "1.4"
50 libc = "0.2"
51 log = "0.4"
52 nix = "0.19.1"
53 num-traits = "0.2"
54 once_cell = "1.3.1"
55 openssl = "0.10"
56 pam = "0.7"
57 pam-sys = "0.5"
58 percent-encoding = "2.1"
59 pin-utils = "0.1.0"
60 pin-project = "1.0"
61 regex = "1.2"
62 rustyline = "7"
63 serde = { version = "1.0", features = ["derive"] }
64 serde_json = "1.0"
65 siphasher = "0.3"
66 syslog = "4.0"
67 tokio = { version = "1.6", features = [ "fs", "io-util", "io-std", "macros", "net", "parking_lot", "process", "rt", "rt-multi-thread", "signal", "time" ] }
68 tokio-openssl = "0.6.1"
69 tokio-stream = "0.1.0"
70 tokio-util = { version = "0.6", features = [ "codec", "io" ] }
71 tower-service = "0.3.0"
72 udev = ">= 0.3, <0.5"
73 url = "2.1"
74 #valgrind_request = { git = "https://github.com/edef1c/libvalgrind_request", version = "1.1.0", optional = true }
75 walkdir = "2"
76 webauthn-rs = "0.2.5"
77 xdg = "2.2"
78 zstd = { version = "0.6", features = [ "bindgen" ] }
79 nom = "5.1"
80 crossbeam-channel = "0.5"
81
82 pathpatterns = "0.1.2"
83 pxar = { version = "0.10.1", features = [ "tokio-io" ] }
84 #pxar = { path = "../pxar", features = [ "tokio-io" ] }
85
86 proxmox = { version = "0.11.5", features = [ "sortable-macro", "api-macro" ] }
87 #proxmox = { git = "git://git.proxmox.com/git/proxmox", version = "0.1.2", features = [ "sortable-macro", "api-macro" ] }
88 #proxmox = { path = "../proxmox/proxmox", features = [ "sortable-macro", "api-macro" ] }
89 proxmox-acme-rs = "0.2.1"
90 proxmox-fuse = "0.1.1"
91 proxmox-http = { version = "0.2.1", features = [ "client", "http-helpers", "websocket" ] }
92 #proxmox-http = { version = "0.2.0", path = "../proxmox/proxmox-http", features = [ "client", "http-helpers", "websocket" ] }
93 proxmox-openid = "0.6.0"
94
95 pbs-buildcfg = { path = "pbs-buildcfg" }
96 pbs-runtime = { path = "pbs-runtime" }
97
98 [features]
99 default = []
100 #valgrind = ["valgrind_request"]