]> git.proxmox.com Git - proxmox-backup.git/blame - Cargo.toml
api2/tape/restore: return backup manifest in try_restore_snapshot_archive
[proxmox-backup.git] / Cargo.toml
CommitLineData
d8d978eb 1[package]
fe0e04c6 2name = "proxmox-backup"
686173dc 3version = "1.1.6"
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
DM
21
22[lib]
fe0e04c6 23name = "proxmox_backup"
d6a4ba71 24path = "src/lib.rs"
d6a4ba71 25
d8d978eb 26[dependencies]
35c95ca6 27apt-pkg-native = "0.3.2"
2e686e0a 28base64 = "0.12"
10effc98 29bitflags = "1.2.1"
427d90e6 30bytes = "1.0"
43597bf3
WB
31crc32fast = "1"
32endian_trait = { version = "0.6", features = ["arrays"] }
dd9cef56 33env_logger = "0.7"
79d84101 34flate2 = "1.0"
f7d4e4b5 35anyhow = "1.0"
0796b642 36foreign-types = "0.3"
164ad7b7 37thiserror = "1.0"
db0cb9ce 38futures = "0.3"
427d90e6 39h2 = { version = "0.3", features = [ "stream" ] }
f9e3b110 40handlebars = "3.0"
db0cb9ce 41http = "0.2"
427d90e6 42hyper = { version = "0.14", features = [ "full" ] }
ceced407 43lazy_static = "1.4"
08481a0b 44libc = "0.2"
43597bf3 45log = "0.4"
427d90e6 46nix = "0.19.1"
ba974798 47num-traits = "0.2"
10effc98 48once_cell = "1.3.1"
832d805c 49openssl = "0.10"
43597bf3
WB
50pam = "0.7"
51pam-sys = "0.5"
8a1028e0 52percent-encoding = "2.1"
b4a85a3f 53pin-utils = "0.1.0"
427d90e6 54pin-project = "1.0"
62f6a7e3 55pathpatterns = "0.1.2"
ee0c5c8e 56proxmox = { version = "0.11.3", features = [ "sortable-macro", "api-macro", "websocket" ] }
b13da548 57#proxmox = { git = "git://git.proxmox.com/git/proxmox", version = "0.1.2", features = [ "sortable-macro", "api-macro" ] }
1c2f842a 58#proxmox = { path = "../proxmox/proxmox", features = [ "sortable-macro", "api-macro", "websocket" ] }
427d90e6 59proxmox-fuse = "0.1.1"
a1d90719 60pxar = { version = "0.10.1", features = [ "tokio-io" ] }
427d90e6 61#pxar = { path = "../pxar", features = [ "tokio-io" ] }
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"
76425d84 68tokio = { version = "1.0", 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"
7a00f8df 79zstd = { version = "0.4", features = [ "bindgen" ] }
2ebdbac1 80nom = "5.1"
427d90e6 81crossbeam-channel = "0.5"
9cdda3f7 82
01d15272
WB
83proxmox-acme-rs = "0.2.1"
84
9cdda3f7
WB
85[features]
86default = []
e881b8a5 87#valgrind = ["valgrind_request"]