-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (34 loc) · 1.08 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "proxmox-backup-qemu"
version = "1.0.3"
authors = [
"Dietmar Maurer <[email protected]>",
"Dominik Csapak <[email protected]>",
"Fabian Grünbichler <[email protected]>",
"Stefan Reiter <[email protected]>",
"Thomas Lamprecht <[email protected]>",
"Wolfgang Bumiller <[email protected]>",
]
edition = "2018"
build = "build.rs"
[lib]
crate-type = ['lib', 'cdylib', 'staticlib']
[build-dependencies]
cbindgen = "0.14.2"
[dependencies]
anyhow = "1.0"
bytes = "1.0"
futures = "0.3"
h2 = { version = "0.3", features = [ "stream" ] }
lazy_static = "1.4"
libc = "0.2"
once_cell = "1.5"
openssl = "0.10"
proxmox = { version = "0.10.5", features = [ "sortable-macro", "api-macro" ] }
#proxmox = { path = "../proxmox/proxmox" }
proxmox-backup = { git = "git://git.proxmox.com/git/proxmox-backup.git", tag = "v1.0.8" }
#proxmox-backup = { path = "../proxmox-backup" }
serde_json = "1.0"
tokio = { version = "1.0", features = [ "fs", "io-util", "macros", "net", "rt-multi-thread", "signal", "time" ] }
tokio-stream = "0.1.1"
bincode = "1.0"