proxmox-backup/Cargo.toml

33 lines
619 B
TOML
Raw Normal View History

2018-10-30 09:04:30 +00:00
[package]
2018-12-20 09:32:49 +00:00
name = "proxmox-backup"
2018-10-30 09:04:30 +00:00
version = "0.1.0"
authors = ["Dietmar Maurer <dietmar@proxmox.com>"]
edition = "2018"
2018-10-30 09:40:05 +00:00
[lib]
2018-12-20 09:32:49 +00:00
name = "proxmox_backup"
2018-10-30 09:40:05 +00:00
path = "src/lib.rs"
2018-10-30 09:04:30 +00:00
[dependencies]
2018-10-31 09:42:14 +00:00
failure = "0.1.3"
serde = "1.0.80"
serde_json = "1.0.32"
2018-10-30 13:06:15 +00:00
serde_derive = "1.0.80"
2018-11-01 10:30:49 +00:00
url = "1.7.1"
2018-11-09 07:22:54 +00:00
futures = "0.1.25"
2018-11-10 11:06:39 +00:00
tokio = "0.1.11"
tokio-codec = "0.1.1"
2018-11-09 07:22:54 +00:00
http = "0.1.13"
hyper = "0.12.14"
2018-11-07 11:35:52 +00:00
lazy_static = "1.1.0"
regex = "1.0.6"
2018-12-19 08:51:33 +00:00
libc = "0.2"
nix = "0.12.0"
2018-12-15 16:05:49 +00:00
shellwords = "1.0.0"
uuid = { version = "0.7", features = ["v4"] }
2018-12-16 13:44:44 +00:00
chrono = "0.4.6" # Date and time library for Rust
2018-12-22 13:31:59 +00:00
openssl = "0.10.16"
siphasher = "0.3"
2019-01-07 13:59:33 +00:00
endian_trait = "0.6.0"