2018-10-30 09:04:30 +00:00
|
|
|
[package]
|
2018-12-20 09:32:49 +00:00
|
|
|
name = "proxmox-backup"
|
2021-06-28 17:07:46 +00:00
|
|
|
version = "2.0.0"
|
2020-11-10 13:42:41 +00:00
|
|
|
authors = [
|
|
|
|
"Dietmar Maurer <dietmar@proxmox.com>",
|
|
|
|
"Dominik Csapak <d.csapak@proxmox.com>",
|
|
|
|
"Christian Ebner <c.ebner@proxmox.com>",
|
|
|
|
"Fabian Grünbichler <f.gruenbichler@proxmox.com>",
|
|
|
|
"Stefan Reiter <s.reiter@proxmox.com>",
|
|
|
|
"Thomas Lamprecht <t.lamprecht@proxmox.com>",
|
|
|
|
"Wolfgang Bumiller <w.bumiller@proxmox.com>",
|
|
|
|
"Proxmox Support Team <support@proxmox.com>",
|
|
|
|
]
|
2018-11-01 13:42:27 +00:00
|
|
|
edition = "2018"
|
2020-01-15 09:29:57 +00:00
|
|
|
license = "AGPL-3"
|
|
|
|
description = "Proxmox Backup"
|
|
|
|
homepage = "https://www.proxmox.com"
|
2021-05-06 11:00:03 +00:00
|
|
|
build = "build.rs"
|
2020-01-15 09:29:57 +00:00
|
|
|
|
|
|
|
exclude = [ "build", "debian", "tests/catar_data/test_symlink/symlink1"]
|
2018-10-30 09:40:05 +00:00
|
|
|
|
|
|
|
[lib]
|
2018-12-20 09:32:49 +00:00
|
|
|
name = "proxmox_backup"
|
2018-10-30 09:40:05 +00:00
|
|
|
path = "src/lib.rs"
|
|
|
|
|
2018-10-30 09:04:30 +00:00
|
|
|
[dependencies]
|
2021-02-01 10:51:50 +00:00
|
|
|
apt-pkg-native = "0.3.2"
|
2020-05-18 07:06:44 +00:00
|
|
|
base64 = "0.12"
|
2020-05-05 08:14:41 +00:00
|
|
|
bitflags = "1.2.1"
|
2020-12-03 15:00:54 +00:00
|
|
|
bytes = "1.0"
|
2019-08-23 10:20:33 +00:00
|
|
|
crc32fast = "1"
|
|
|
|
endian_trait = { version = "0.6", features = ["arrays"] }
|
2021-03-31 10:21:52 +00:00
|
|
|
env_logger = "0.7"
|
2021-04-06 09:03:42 +00:00
|
|
|
flate2 = "1.0"
|
2020-04-17 12:11:25 +00:00
|
|
|
anyhow = "1.0"
|
2021-04-22 14:01:51 +00:00
|
|
|
foreign-types = "0.3"
|
2021-04-12 07:36:29 +00:00
|
|
|
thiserror = "1.0"
|
2019-12-12 14:27:07 +00:00
|
|
|
futures = "0.3"
|
2020-12-03 15:00:54 +00:00
|
|
|
h2 = { version = "0.3", features = [ "stream" ] }
|
2020-04-29 09:59:31 +00:00
|
|
|
handlebars = "3.0"
|
2019-12-12 14:27:07 +00:00
|
|
|
http = "0.2"
|
2020-12-03 15:00:54 +00:00
|
|
|
hyper = { version = "0.14", features = [ "full" ] }
|
2019-12-18 09:47:30 +00:00
|
|
|
lazy_static = "1.4"
|
2018-12-19 08:51:33 +00:00
|
|
|
libc = "0.2"
|
2019-08-23 10:20:33 +00:00
|
|
|
log = "0.4"
|
2020-12-03 15:00:54 +00:00
|
|
|
nix = "0.19.1"
|
2020-06-09 08:01:12 +00:00
|
|
|
num-traits = "0.2"
|
2020-05-05 08:14:41 +00:00
|
|
|
once_cell = "1.3.1"
|
2019-01-20 09:06:29 +00:00
|
|
|
openssl = "0.10"
|
2019-08-23 10:20:33 +00:00
|
|
|
pam = "0.7"
|
|
|
|
pam-sys = "0.5"
|
2019-12-13 10:55:52 +00:00
|
|
|
percent-encoding = "2.1"
|
2020-05-14 09:46:05 +00:00
|
|
|
pin-utils = "0.1.0"
|
2020-12-03 15:00:54 +00:00
|
|
|
pin-project = "1.0"
|
2020-07-09 12:33:07 +00:00
|
|
|
pathpatterns = "0.1.2"
|
2021-05-14 13:44:50 +00:00
|
|
|
proxmox = { version = "0.11.5", features = [ "sortable-macro", "api-macro" ] }
|
2020-10-12 10:10:29 +00:00
|
|
|
#proxmox = { git = "git://git.proxmox.com/git/proxmox", version = "0.1.2", features = [ "sortable-macro", "api-macro" ] }
|
2021-05-14 13:44:50 +00:00
|
|
|
#proxmox = { path = "../proxmox/proxmox", features = [ "sortable-macro", "api-macro" ] }
|
2020-12-03 15:00:54 +00:00
|
|
|
proxmox-fuse = "0.1.1"
|
2021-05-21 16:25:26 +00:00
|
|
|
proxmox-http = { version = "0.2.1", features = [ "client", "http-helpers", "websocket" ] }
|
2021-05-17 09:29:24 +00:00
|
|
|
#proxmox-http = { version = "0.2.0", path = "../proxmox/proxmox-http", features = [ "client", "http-helpers", "websocket" ] }
|
2021-03-31 12:00:20 +00:00
|
|
|
pxar = { version = "0.10.1", features = [ "tokio-io" ] }
|
2020-12-03 15:00:54 +00:00
|
|
|
#pxar = { path = "../pxar", features = [ "tokio-io" ] }
|
2019-12-18 09:47:30 +00:00
|
|
|
regex = "1.2"
|
2020-12-03 15:00:54 +00:00
|
|
|
rustyline = "7"
|
2019-08-23 10:20:33 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
2018-12-28 18:50:07 +00:00
|
|
|
siphasher = "0.3"
|
2019-08-23 10:20:33 +00:00
|
|
|
syslog = "4.0"
|
2021-06-01 07:30:12 +00:00
|
|
|
tokio = { version = "1.6", features = [ "fs", "io-util", "io-std", "macros", "net", "parking_lot", "process", "rt", "rt-multi-thread", "signal", "time" ] }
|
2020-12-03 15:00:54 +00:00
|
|
|
tokio-openssl = "0.6.1"
|
|
|
|
tokio-stream = "0.1.0"
|
2021-03-31 10:22:02 +00:00
|
|
|
tokio-util = { version = "0.6", features = [ "codec", "io" ] }
|
2019-12-12 14:27:07 +00:00
|
|
|
tower-service = "0.3.0"
|
2020-07-20 10:07:45 +00:00
|
|
|
udev = ">= 0.3, <0.5"
|
2019-12-13 10:55:52 +00:00
|
|
|
url = "2.1"
|
2020-01-15 09:29:57 +00:00
|
|
|
#valgrind_request = { git = "https://github.com/edef1c/libvalgrind_request", version = "1.1.0", optional = true }
|
2019-01-18 11:24:58 +00:00
|
|
|
walkdir = "2"
|
2020-11-16 13:37:22 +00:00
|
|
|
webauthn-rs = "0.2.5"
|
2019-03-06 09:23:56 +00:00
|
|
|
xdg = "2.2"
|
2021-06-02 10:14:37 +00:00
|
|
|
zstd = { version = "0.6", features = [ "bindgen" ] }
|
2020-05-14 10:17:20 +00:00
|
|
|
nom = "5.1"
|
2020-12-03 15:00:54 +00:00
|
|
|
crossbeam-channel = "0.5"
|
2019-05-22 12:43:24 +00:00
|
|
|
|
2021-04-22 14:01:55 +00:00
|
|
|
proxmox-acme-rs = "0.2.1"
|
|
|
|
|
2021-06-15 05:11:49 +00:00
|
|
|
proxmox-openid = "0.6.0"
|
|
|
|
|
2019-05-22 12:43:24 +00:00
|
|
|
[features]
|
|
|
|
default = []
|
2020-01-15 09:29:57 +00:00
|
|
|
#valgrind = ["valgrind_request"]
|