]> git.proxmox.com Git - proxmox-backup.git/blame - Cargo.toml
bump version to 2.0.12-1
[proxmox-backup.git] / Cargo.toml
CommitLineData
d8d978eb 1[package]
fe0e04c6 2name = "proxmox-backup"
bd10af6e 3version = "2.0.12"
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",
21211748 25 "pbs-config",
f323e906 26 "pbs-datastore",
eb5e0ae6 27 "pbs-fuse-loop",
d420962f 28 "pbs-runtime",
037f6b6d 29 "proxmox-rest-server",
09340f28 30 "proxmox-rrd",
84af82e8 31 "proxmox-systemd",
048b43af 32 "pbs-tape",
770a36e5 33 "pbs-tools",
b9c5cd82
WB
34
35 "proxmox-backup-banner",
e351ac78 36 "proxmox-backup-client",
6c76aa43 37 "proxmox-file-restore",
6523588c 38 "proxmox-restore-daemon",
58a3fae7 39 "pxar-bin",
af06decd
WB
40]
41
d6a4ba71 42[lib]
fe0e04c6 43name = "proxmox_backup"
d6a4ba71 44path = "src/lib.rs"
d6a4ba71 45
d8d978eb 46[dependencies]
35c95ca6 47apt-pkg-native = "0.3.2"
2e686e0a 48base64 = "0.12"
10effc98 49bitflags = "1.2.1"
427d90e6 50bytes = "1.0"
43597bf3
WB
51crc32fast = "1"
52endian_trait = { version = "0.6", features = ["arrays"] }
dd9cef56 53env_logger = "0.7"
79d84101 54flate2 = "1.0"
f7d4e4b5 55anyhow = "1.0"
164ad7b7 56thiserror = "1.0"
db0cb9ce 57futures = "0.3"
427d90e6 58h2 = { version = "0.3", features = [ "stream" ] }
f9e3b110 59handlebars = "3.0"
6ef1b649 60hex = "0.4.3"
db0cb9ce 61http = "0.2"
427d90e6 62hyper = { version = "0.14", features = [ "full" ] }
ceced407 63lazy_static = "1.4"
08481a0b 64libc = "0.2"
43597bf3 65log = "0.4"
427d90e6 66nix = "0.19.1"
ba974798 67num-traits = "0.2"
10effc98 68once_cell = "1.3.1"
832d805c 69openssl = "0.10"
43597bf3
WB
70pam = "0.7"
71pam-sys = "0.5"
8a1028e0 72percent-encoding = "2.1"
ceced407 73regex = "1.2"
427d90e6 74rustyline = "7"
43597bf3
WB
75serde = { version = "1.0", features = ["derive"] }
76serde_json = "1.0"
46b6fbd6 77siphasher = "0.3"
43597bf3 78syslog = "4.0"
f432a1c9 79tokio = { version = "1.6", features = [ "fs", "io-util", "io-std", "macros", "net", "parking_lot", "process", "rt", "rt-multi-thread", "signal", "time" ] }
427d90e6
FG
80tokio-openssl = "0.6.1"
81tokio-stream = "0.1.0"
b13089cd 82tokio-util = { version = "0.6", features = [ "codec", "io" ] }
db0cb9ce 83tower-service = "0.3.0"
295d4f41 84udev = ">= 0.3, <0.5"
8a1028e0 85url = "2.1"
e881b8a5 86#valgrind_request = { git = "https://github.com/edef1c/libvalgrind_request", version = "1.1.0", optional = true }
95cea65b 87walkdir = "2"
027ef213 88webauthn-rs = "0.2.5"
6716f30b 89xdg = "2.2"
2ebdbac1 90nom = "5.1"
427d90e6 91crossbeam-channel = "0.5"
9cdda3f7 92
42dad3ab
WB
93# Used only by examples currently:
94zstd = { version = "0.6", features = [ "bindgen" ] }
95
aceae32b
WB
96pathpatterns = "0.1.2"
97pxar = { version = "0.10.1", features = [ "tokio-io" ] }
01d15272 98
6ef1b649 99proxmox = { version = "0.14.0", features = [ "sortable-macro" ] }
e3f3359c 100proxmox-http = { version = "0.5.0", features = [ "client", "http-helpers", "websocket" ] }
6ef1b649
WB
101proxmox-io = "1"
102proxmox-lang = "1"
b3f279e2 103proxmox-router = { version = "1.1", features = [ "cli" ] }
6ef1b649
WB
104proxmox-schema = { version = "1", features = [ "api-macro" ] }
105proxmox-section-config = "1"
106proxmox-tfa = { version = "1", features = [ "u2f" ] }
107proxmox-time = "1"
108proxmox-uuid = "1"
109
110proxmox-acme-rs = "0.2.1"
111proxmox-apt = "0.8.0"
112proxmox-openid = "0.8.0"
bb88c6a2 113
86fb3877 114pbs-api-types = { path = "pbs-api-types" }
d420962f 115pbs-buildcfg = { path = "pbs-buildcfg" }
2b7f8dd5 116pbs-client = { path = "pbs-client" }
21211748 117pbs-config = { path = "pbs-config" }
f323e906 118pbs-datastore = { path = "pbs-datastore" }
d420962f 119pbs-runtime = { path = "pbs-runtime" }
037f6b6d 120proxmox-rest-server = { path = "proxmox-rest-server" }
09340f28 121proxmox-rrd = { path = "proxmox-rrd" }
84af82e8 122proxmox-systemd = { path = "proxmox-systemd" }
770a36e5 123pbs-tools = { path = "pbs-tools" }
048b43af 124pbs-tape = { path = "pbs-tape" }
af06decd 125
9f5b57a3
WB
126# Local path overrides
127# NOTE: You must run `cargo update` after changing this for it to take effect!
128[patch.crates-io]
6838b759
WB
129#proxmox = { path = "../proxmox/proxmox" }
130#proxmox-http = { path = "../proxmox/proxmox-http" }
131#pxar = { path = "../pxar" }
9f5b57a3 132
9cdda3f7
WB
133[features]
134default = []
e881b8a5 135#valgrind = ["valgrind_request"]