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