]> git.proxmox.com Git - proxmox-backup.git/blame - Cargo.toml
ui: tfa: rework removal confirmation dialog
[proxmox-backup.git] / Cargo.toml
CommitLineData
d8d978eb 1[package]
fe0e04c6 2name = "proxmox-backup"
2d87f2fb 3version = "1.0.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"
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]
a4e86972 26apt-pkg-native = "0.3.1" # custom patched version
2e686e0a 27base64 = "0.12"
10effc98 28bitflags = "1.2.1"
427d90e6 29bytes = "1.0"
43597bf3
WB
30crc32fast = "1"
31endian_trait = { version = "0.6", features = ["arrays"] }
f7d4e4b5 32anyhow = "1.0"
db0cb9ce 33futures = "0.3"
427d90e6 34h2 = { version = "0.3", features = [ "stream" ] }
f9e3b110 35handlebars = "3.0"
db0cb9ce 36http = "0.2"
427d90e6 37hyper = { version = "0.14", features = [ "full" ] }
ceced407 38lazy_static = "1.4"
08481a0b 39libc = "0.2"
43597bf3 40log = "0.4"
427d90e6 41nix = "0.19.1"
ba974798 42num-traits = "0.2"
10effc98 43once_cell = "1.3.1"
832d805c 44openssl = "0.10"
43597bf3
WB
45pam = "0.7"
46pam-sys = "0.5"
8a1028e0 47percent-encoding = "2.1"
b4a85a3f 48pin-utils = "0.1.0"
427d90e6 49pin-project = "1.0"
62f6a7e3 50pathpatterns = "0.1.2"
427d90e6 51proxmox = { version = "0.10.0", features = [ "sortable-macro", "api-macro", "websocket" ] }
b13da548 52#proxmox = { git = "git://git.proxmox.com/git/proxmox", version = "0.1.2", features = [ "sortable-macro", "api-macro" ] }
1c2f842a 53#proxmox = { path = "../proxmox/proxmox", features = [ "sortable-macro", "api-macro", "websocket" ] }
427d90e6
FG
54proxmox-fuse = "0.1.1"
55pxar = { version = "0.7.0", features = [ "tokio-io" ] }
56#pxar = { path = "../pxar", features = [ "tokio-io" ] }
ceced407 57regex = "1.2"
427d90e6 58rustyline = "7"
43597bf3
WB
59serde = { version = "1.0", features = ["derive"] }
60serde_json = "1.0"
46b6fbd6 61siphasher = "0.3"
43597bf3 62syslog = "4.0"
427d90e6
FG
63tokio = { version = "1.0", features = [ "fs", "io-util", "macros", "net", "parking_lot", "process", "rt", "rt-multi-thread", "signal", "time" ] }
64tokio-openssl = "0.6.1"
65tokio-stream = "0.1.0"
66tokio-util = { version = "0.6", features = [ "codec" ] }
db0cb9ce 67tower-service = "0.3.0"
295d4f41 68udev = ">= 0.3, <0.5"
8a1028e0 69url = "2.1"
e881b8a5 70#valgrind_request = { git = "https://github.com/edef1c/libvalgrind_request", version = "1.1.0", optional = true }
95cea65b 71walkdir = "2"
027ef213 72webauthn-rs = "0.2.5"
6716f30b 73xdg = "2.2"
7a00f8df 74zstd = { version = "0.4", features = [ "bindgen" ] }
2ebdbac1 75nom = "5.1"
427d90e6 76crossbeam-channel = "0.5"
9cdda3f7
WB
77
78[features]
79default = []
e881b8a5 80#valgrind = ["valgrind_request"]