]> git.proxmox.com Git - proxmox-backup.git/blame - Cargo.toml
tape restore: do not verify restored files
[proxmox-backup.git] / Cargo.toml
CommitLineData
d8d978eb 1[package]
fe0e04c6 2name = "proxmox-backup"
aac42467 3version = "1.1.5"
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
DM
20
21[lib]
fe0e04c6 22name = "proxmox_backup"
d6a4ba71 23path = "src/lib.rs"
d6a4ba71 24
d8d978eb 25[dependencies]
35c95ca6 26apt-pkg-native = "0.3.2"
2e686e0a 27base64 = "0.12"
10effc98 28bitflags = "1.2.1"
427d90e6 29bytes = "1.0"
43597bf3
WB
30crc32fast = "1"
31endian_trait = { version = "0.6", features = ["arrays"] }
dd9cef56 32env_logger = "0.7"
79d84101 33flate2 = "1.0"
f7d4e4b5 34anyhow = "1.0"
0796b642 35foreign-types = "0.3"
164ad7b7 36thiserror = "1.0"
db0cb9ce 37futures = "0.3"
427d90e6 38h2 = { version = "0.3", features = [ "stream" ] }
f9e3b110 39handlebars = "3.0"
db0cb9ce 40http = "0.2"
427d90e6 41hyper = { version = "0.14", features = [ "full" ] }
ceced407 42lazy_static = "1.4"
08481a0b 43libc = "0.2"
43597bf3 44log = "0.4"
427d90e6 45nix = "0.19.1"
ba974798 46num-traits = "0.2"
10effc98 47once_cell = "1.3.1"
832d805c 48openssl = "0.10"
43597bf3
WB
49pam = "0.7"
50pam-sys = "0.5"
8a1028e0 51percent-encoding = "2.1"
b4a85a3f 52pin-utils = "0.1.0"
427d90e6 53pin-project = "1.0"
62f6a7e3 54pathpatterns = "0.1.2"
671c6a96 55proxmox = { version = "0.11.2", features = [ "sortable-macro", "api-macro", "websocket" ] }
b13da548 56#proxmox = { git = "git://git.proxmox.com/git/proxmox", version = "0.1.2", features = [ "sortable-macro", "api-macro" ] }
1c2f842a 57#proxmox = { path = "../proxmox/proxmox", features = [ "sortable-macro", "api-macro", "websocket" ] }
427d90e6 58proxmox-fuse = "0.1.1"
a1d90719 59pxar = { version = "0.10.1", features = [ "tokio-io" ] }
427d90e6 60#pxar = { path = "../pxar", features = [ "tokio-io" ] }
ceced407 61regex = "1.2"
427d90e6 62rustyline = "7"
43597bf3
WB
63serde = { version = "1.0", features = ["derive"] }
64serde_json = "1.0"
46b6fbd6 65siphasher = "0.3"
43597bf3 66syslog = "4.0"
76425d84 67tokio = { version = "1.0", features = [ "fs", "io-util", "io-std", "macros", "net", "parking_lot", "process", "rt", "rt-multi-thread", "signal", "time" ] }
427d90e6
FG
68tokio-openssl = "0.6.1"
69tokio-stream = "0.1.0"
b13089cd 70tokio-util = { version = "0.6", features = [ "codec", "io" ] }
db0cb9ce 71tower-service = "0.3.0"
295d4f41 72udev = ">= 0.3, <0.5"
8a1028e0 73url = "2.1"
e881b8a5 74#valgrind_request = { git = "https://github.com/edef1c/libvalgrind_request", version = "1.1.0", optional = true }
95cea65b 75walkdir = "2"
027ef213 76webauthn-rs = "0.2.5"
6716f30b 77xdg = "2.2"
7a00f8df 78zstd = { version = "0.4", features = [ "bindgen" ] }
2ebdbac1 79nom = "5.1"
427d90e6 80crossbeam-channel = "0.5"
9cdda3f7 81
01d15272
WB
82proxmox-acme-rs = "0.2.1"
83
9cdda3f7
WB
84[features]
85default = []
e881b8a5 86#valgrind = ["valgrind_request"]