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