]> git.proxmox.com Git - proxmox-backup.git/blame - Cargo.toml
add pbs-tools subcrate
[proxmox-backup.git] / Cargo.toml
CommitLineData
d8d978eb 1[package]
fe0e04c6 2name = "proxmox-backup"
34bd1109 3version = "2.0.1"
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"
d8769d65 18build = "build.rs"
e881b8a5
FG
19
20exclude = [ "build", "debian", "tests/catar_data/test_symlink/symlink1"]
d6a4ba71 21
af06decd
WB
22[workspace]
23members = [
24 "pbs-buildcfg",
d420962f 25 "pbs-runtime",
770a36e5 26 "pbs-tools",
af06decd
WB
27]
28
d6a4ba71 29[lib]
fe0e04c6 30name = "proxmox_backup"
d6a4ba71 31path = "src/lib.rs"
d6a4ba71 32
d8d978eb 33[dependencies]
35c95ca6 34apt-pkg-native = "0.3.2"
2e686e0a 35base64 = "0.12"
10effc98 36bitflags = "1.2.1"
427d90e6 37bytes = "1.0"
43597bf3
WB
38crc32fast = "1"
39endian_trait = { version = "0.6", features = ["arrays"] }
dd9cef56 40env_logger = "0.7"
79d84101 41flate2 = "1.0"
f7d4e4b5 42anyhow = "1.0"
0796b642 43foreign-types = "0.3"
164ad7b7 44thiserror = "1.0"
db0cb9ce 45futures = "0.3"
427d90e6 46h2 = { version = "0.3", features = [ "stream" ] }
f9e3b110 47handlebars = "3.0"
db0cb9ce 48http = "0.2"
427d90e6 49hyper = { version = "0.14", features = [ "full" ] }
ceced407 50lazy_static = "1.4"
08481a0b 51libc = "0.2"
43597bf3 52log = "0.4"
427d90e6 53nix = "0.19.1"
ba974798 54num-traits = "0.2"
10effc98 55once_cell = "1.3.1"
832d805c 56openssl = "0.10"
43597bf3
WB
57pam = "0.7"
58pam-sys = "0.5"
8a1028e0 59percent-encoding = "2.1"
b4a85a3f 60pin-utils = "0.1.0"
427d90e6 61pin-project = "1.0"
ceced407 62regex = "1.2"
427d90e6 63rustyline = "7"
43597bf3
WB
64serde = { version = "1.0", features = ["derive"] }
65serde_json = "1.0"
46b6fbd6 66siphasher = "0.3"
43597bf3 67syslog = "4.0"
f432a1c9 68tokio = { version = "1.6", features = [ "fs", "io-util", "io-std", "macros", "net", "parking_lot", "process", "rt", "rt-multi-thread", "signal", "time" ] }
427d90e6
FG
69tokio-openssl = "0.6.1"
70tokio-stream = "0.1.0"
b13089cd 71tokio-util = { version = "0.6", features = [ "codec", "io" ] }
db0cb9ce 72tower-service = "0.3.0"
295d4f41 73udev = ">= 0.3, <0.5"
8a1028e0 74url = "2.1"
e881b8a5 75#valgrind_request = { git = "https://github.com/edef1c/libvalgrind_request", version = "1.1.0", optional = true }
95cea65b 76walkdir = "2"
027ef213 77webauthn-rs = "0.2.5"
6716f30b 78xdg = "2.2"
90ff75f8 79zstd = { version = "0.6", features = [ "bindgen" ] }
2ebdbac1 80nom = "5.1"
427d90e6 81crossbeam-channel = "0.5"
9cdda3f7 82
aceae32b
WB
83pathpatterns = "0.1.2"
84pxar = { version = "0.10.1", features = [ "tokio-io" ] }
85#pxar = { path = "../pxar", features = [ "tokio-io" ] }
01d15272 86
aceae32b
WB
87proxmox = { version = "0.11.5", features = [ "sortable-macro", "api-macro" ] }
88#proxmox = { git = "git://git.proxmox.com/git/proxmox", version = "0.1.2", features = [ "sortable-macro", "api-macro" ] }
89#proxmox = { path = "../proxmox/proxmox", features = [ "sortable-macro", "api-macro" ] }
90proxmox-acme-rs = "0.2.1"
91proxmox-fuse = "0.1.1"
92proxmox-http = { version = "0.2.1", features = [ "client", "http-helpers", "websocket" ] }
93#proxmox-http = { version = "0.2.0", path = "../proxmox/proxmox-http", features = [ "client", "http-helpers", "websocket" ] }
bb88c6a2
DM
94proxmox-openid = "0.6.0"
95
d420962f
WB
96pbs-buildcfg = { path = "pbs-buildcfg" }
97pbs-runtime = { path = "pbs-runtime" }
770a36e5 98pbs-tools = { path = "pbs-tools" }
af06decd 99
9cdda3f7
WB
100[features]
101default = []
e881b8a5 102#valgrind = ["valgrind_request"]