]> git.proxmox.com Git - proxmox-backup.git/blame - Cargo.toml
client: fix panic message
[proxmox-backup.git] / Cargo.toml
CommitLineData
d8d978eb 1[package]
fe0e04c6 2name = "proxmox-backup"
6d81e659 3version = "2.0.5"
deef6fbc
TL
4authors = [
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]
763220ce 14edition = "2018"
e881b8a5
FG
15license = "AGPL-3"
16description = "Proxmox Backup"
17homepage = "https://www.proxmox.com"
18
19exclude = [ "build", "debian", "tests/catar_data/test_symlink/symlink1"]
d6a4ba71 20
af06decd
WB
21[workspace]
22members = [
23 "pbs-buildcfg",
2b7f8dd5 24 "pbs-client",
f323e906 25 "pbs-datastore",
d420962f 26 "pbs-runtime",
067dc06d 27 "pbs-systemd",
770a36e5 28 "pbs-tools",
b9c5cd82
WB
29
30 "proxmox-backup-banner",
58a3fae7 31 "pxar-bin",
af06decd
WB
32]
33
d6a4ba71 34[lib]
fe0e04c6 35name = "proxmox_backup"
d6a4ba71 36path = "src/lib.rs"
d6a4ba71 37
d8d978eb 38[dependencies]
35c95ca6 39apt-pkg-native = "0.3.2"
2e686e0a 40base64 = "0.12"
10effc98 41bitflags = "1.2.1"
427d90e6 42bytes = "1.0"
43597bf3
WB
43crc32fast = "1"
44endian_trait = { version = "0.6", features = ["arrays"] }
dd9cef56 45env_logger = "0.7"
79d84101 46flate2 = "1.0"
f7d4e4b5 47anyhow = "1.0"
164ad7b7 48thiserror = "1.0"
db0cb9ce 49futures = "0.3"
427d90e6 50h2 = { version = "0.3", features = [ "stream" ] }
f9e3b110 51handlebars = "3.0"
db0cb9ce 52http = "0.2"
427d90e6 53hyper = { version = "0.14", features = [ "full" ] }
ceced407 54lazy_static = "1.4"
08481a0b 55libc = "0.2"
43597bf3 56log = "0.4"
427d90e6 57nix = "0.19.1"
ba974798 58num-traits = "0.2"
10effc98 59once_cell = "1.3.1"
832d805c 60openssl = "0.10"
43597bf3
WB
61pam = "0.7"
62pam-sys = "0.5"
8a1028e0 63percent-encoding = "2.1"
b4a85a3f 64pin-utils = "0.1.0"
427d90e6 65pin-project = "1.0"
ceced407 66regex = "1.2"
427d90e6 67rustyline = "7"
43597bf3
WB
68serde = { version = "1.0", features = ["derive"] }
69serde_json = "1.0"
46b6fbd6 70siphasher = "0.3"
43597bf3 71syslog = "4.0"
f432a1c9 72tokio = { version = "1.6", features = [ "fs", "io-util", "io-std", "macros", "net", "parking_lot", "process", "rt", "rt-multi-thread", "signal", "time" ] }
427d90e6
FG
73tokio-openssl = "0.6.1"
74tokio-stream = "0.1.0"
b13089cd 75tokio-util = { version = "0.6", features = [ "codec", "io" ] }
db0cb9ce 76tower-service = "0.3.0"
295d4f41 77udev = ">= 0.3, <0.5"
8a1028e0 78url = "2.1"
e881b8a5 79#valgrind_request = { git = "https://github.com/edef1c/libvalgrind_request", version = "1.1.0", optional = true }
95cea65b 80walkdir = "2"
027ef213 81webauthn-rs = "0.2.5"
6716f30b 82xdg = "2.2"
90ff75f8 83zstd = { version = "0.6", features = [ "bindgen" ] }
2ebdbac1 84nom = "5.1"
427d90e6 85crossbeam-channel = "0.5"
9cdda3f7 86
aceae32b
WB
87pathpatterns = "0.1.2"
88pxar = { version = "0.10.1", features = [ "tokio-io" ] }
01d15272 89
a301c362 90proxmox = { version = "0.12.0", features = [ "sortable-macro", "api-macro", "cli", "router", "tfa" ] }
aceae32b 91proxmox-acme-rs = "0.2.1"
a301c362 92proxmox-apt = "0.5.1"
aceae32b 93proxmox-fuse = "0.1.1"
02cb5b5f 94proxmox-http = { version = "0.3.0", features = [ "client", "http-helpers", "websocket" ] }
a301c362 95proxmox-openid = "0.6.1"
bb88c6a2 96
86fb3877 97pbs-api-types = { path = "pbs-api-types" }
d420962f 98pbs-buildcfg = { path = "pbs-buildcfg" }
2b7f8dd5 99pbs-client = { path = "pbs-client" }
f323e906 100pbs-datastore = { path = "pbs-datastore" }
d420962f 101pbs-runtime = { path = "pbs-runtime" }
067dc06d 102pbs-systemd = { path = "pbs-systemd" }
770a36e5 103pbs-tools = { path = "pbs-tools" }
af06decd 104
9f5b57a3
WB
105# Local path overrides
106# NOTE: You must run `cargo update` after changing this for it to take effect!
107[patch.crates-io]
108#proxmox = { path = "../proxmox/proxmox", features = [ "sortable-macro", "api-macro", "cli", "router", "tfa" ] }
109#proxmox-http = { path = "../proxmox/proxmox-http", features = [ "client", "http-helpers", "websocket" ] }
110#pxar = { path = "../pxar", features = [ "tokio-io" ] }
111
9cdda3f7
WB
112[features]
113default = []
e881b8a5 114#valgrind = ["valgrind_request"]