5
0
mirror of git://git.proxmox.com/git/proxmox-backup-qemu.git synced 2025-03-12 04:58:26 +03:00
proxmox-backup-qemu/Cargo.toml

35 lines
1.0 KiB
TOML
Raw Normal View History

2019-09-11 10:35:05 +02:00
[package]
name = "proxmox-backup-qemu"
version = "0.7.0"
2019-09-11 10:35:05 +02:00
authors = [
"Dietmar Maurer <dietmar@proxmox.com>",
"Dominik Csapak <d.csapak@proxmox.com>",
"Fabian Grünbichler <f.gruenbichler@proxmox.com>",
"Stefan Reiter <s.reiter@proxmox.com>",
"Thomas Lamprecht <t.lamprecht@proxmox.com>",
2019-09-11 10:35:05 +02:00
"Wolfgang Bumiller <w.bumiller@proxmox.com>",
]
edition = "2018"
build = "build.rs"
[lib]
2019-09-11 11:03:23 +02:00
crate-type = ['lib', 'cdylib', 'staticlib']
2019-09-11 10:35:05 +02:00
[build-dependencies]
cbindgen = "0.14.2"
2019-09-11 10:35:05 +02:00
[dependencies]
anyhow = "1.0"
2020-02-12 13:01:20 +01:00
bytes = "0.5"
futures = "0.3"
h2 = { version = "0.2", features = ["stream"] }
lazy_static = "1.4"
libc = "0.2"
once_cell = "1.3.1"
openssl = "0.10"
proxmox = { version = "0.4.3", features = [ "sortable-macro", "api-macro" ] }
proxmox-backup = { git = "git://git.proxmox.com/git/proxmox-backup.git", tag = "v0.9.1" }
#proxmox-backup = { path = "../proxmox-backup" }
serde_json = "1.0"
tokio = { version = "0.2.9", features = [ "blocking", "fs", "io-util", "macros", "rt-threaded", "signal", "stream", "tcp", "time", "uds" ] }