]> git.proxmox.com Git - proxmox-backup.git/blame - Cargo.toml
Revert previous, commit, use UTC RFC3339 without timezone (Z)
[proxmox-backup.git] / Cargo.toml
CommitLineData
d8d978eb 1[package]
fe0e04c6 2name = "proxmox-backup"
d8d978eb
DM
3version = "0.1.0"
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]
a70b2aeb 12proxmox = { git = "ssh://gitolite3@proxdev.maurer-it.com/rust/proxmox", version = "0.1" }
e2d007f7 13proxmox-protocol = { path = "proxmox-protocol" }
d96d8273
DM
14log = "0.4"
15syslog = "4.0"
832d805c 16failure = "0.1"
11515438 17serde = { version = "1.0", features = ["derive"] }
832d805c 18serde_json = "1.0"
832d805c
DM
19url = "1.7"
20futures = "0.1"
cf639a47 21bytes = "0.4"
8e89d9ca 22tokio-threadpool = "0.1"
832d805c 23tokio = "0.1"
6716f30b 24tokio-fs = "0.1"
6d1f61b2 25tokio-openssl = "0.3"
7a630df7
DM
26tokio-signal = "0.2"
27native-tls = "0.2"
832d805c 28http = "0.1"
152764ec 29h2 = "0.1"
832d805c 30hyper = "0.12"
6d1f61b2 31hyper-openssl = "0.7"
832d805c
DM
32lazy_static = "1.1"
33regex = "1.0"
08481a0b 34libc = "0.2"
a650f503 35nix = "0.13"
832d805c 36shellwords = "1.0"
d13e3745 37uuid = { version = "0.7", features = ["v4"] }
832d805c
DM
38chrono = "0.4" # Date and time library for Rust
39openssl = "0.10"
46b6fbd6 40siphasher = "0.3"
8c3c63fa 41endian_trait = { version = "0.6", features = ["arrays"] }
95cea65b 42walkdir = "2"
7e13b2d6 43md5 = "0.6"
8d04280b 44base64 = "0.10"
c82bc1a1 45pam-sys = "0.5"
1d77b6cf 46pam = "0.7"
141f062e 47zstd = "0.4"
6716f30b 48xdg = "2.2"
b6b012e3 49mio = "0.6"
9cdda3f7 50valgrind_request = { version = "1.1", optional = true }
5e0f3051 51textwrap = "0.11"
a7f67a9a 52crc32fast = "1"
9cdda3f7
WB
53
54[features]
55default = []
56valgrind = ["valgrind_request"]
d04c67b8
WB
57
58[replace]
e3975c2c 59"zstd-sys:1.4.10" = { path = "zstd-sys" }