]> git.proxmox.com Git - proxmox-backup.git/blame - Cargo.toml
TODO.rst: update
[proxmox-backup.git] / Cargo.toml
CommitLineData
d8d978eb 1[package]
fe0e04c6 2name = "proxmox-backup"
106a204d 3version = "0.1.3"
d8d978eb 4authors = ["Dietmar Maurer <dietmar@proxmox.com>"]
763220ce 5edition = "2018"
e881b8a5
FG
6license = "AGPL-3"
7description = "Proxmox Backup"
8homepage = "https://www.proxmox.com"
9
10exclude = [ "build", "debian", "tests/catar_data/test_symlink/symlink1"]
d6a4ba71
DM
11
12[lib]
fe0e04c6 13name = "proxmox_backup"
d6a4ba71 14path = "src/lib.rs"
d6a4ba71 15
d8d978eb 16[dependencies]
43597bf3 17base64 = "0.10"
db0cb9ce 18bytes = "0.5"
43597bf3
WB
19chrono = "0.4" # Date and time library for Rust
20crc32fast = "1"
21endian_trait = { version = "0.6", features = ["arrays"] }
f7d4e4b5 22anyhow = "1.0"
db0cb9ce
WB
23futures = "0.3"
24h2 = { version = "0.2", features = ["stream"] }
f9e3b110 25handlebars = "3.0"
db0cb9ce
WB
26http = "0.2"
27hyper = "0.13"
ceced407 28lazy_static = "1.4"
08481a0b 29libc = "0.2"
43597bf3 30log = "0.4"
43597bf3 31native-tls = "0.2"
8bf4559b 32nix = "0.16"
832d805c 33openssl = "0.10"
43597bf3
WB
34pam = "0.7"
35pam-sys = "0.5"
8a1028e0 36percent-encoding = "2.1"
43597bf3 37pin-utils = "0.1.0-alpha"
bc0d0388 38proxmox = { version = "0.1.25", features = [ "sortable-macro", "api-macro" ] }
7d239685
TL
39#proxmox = { git = "ssh://gitolite3@proxdev.maurer-it.com/rust/proxmox", version = "0.1.2", features = [ "sortable-macro", "api-macro" ] }
40#proxmox = { path = "../proxmox/proxmox", features = [ "sortable-macro", "api-macro" ] }
ceced407
FG
41regex = "1.2"
42rustyline = "5.0.5"
43597bf3
WB
43serde = { version = "1.0", features = ["derive"] }
44serde_json = "1.0"
46b6fbd6 45siphasher = "0.3"
43597bf3 46syslog = "4.0"
dbd3e5da 47tokio = { version = "0.2.9", features = [ "blocking", "fs", "io-util", "macros", "rt-threaded", "signal", "stream", "tcp", "time", "uds" ] }
db0cb9ce 48tokio-openssl = "0.4.0"
8a1028e0 49tokio-util = { version = "0.2.0", features = [ "codec" ] }
db0cb9ce 50tower-service = "0.3.0"
8a1028e0 51url = "2.1"
e881b8a5 52#valgrind_request = { git = "https://github.com/edef1c/libvalgrind_request", version = "1.1.0", optional = true }
95cea65b 53walkdir = "2"
6716f30b 54xdg = "2.2"
7a00f8df 55zstd = { version = "0.4", features = [ "bindgen" ] }
9cdda3f7
WB
56
57[features]
58default = []
e881b8a5 59#valgrind = ["valgrind_request"]