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