-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
49 lines (43 loc) · 1.38 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
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "proxmox-backup-qemu"
version = "1.4.1"
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>",
"Wolfgang Bumiller <w.bumiller@proxmox.com>",
]
edition = "2021"
build = "build.rs"
[lib]
crate-type = ['lib', 'cdylib', 'staticlib']
[build-dependencies]
cbindgen = "0.26.0"
[dependencies]
anyhow = "1.0"
bytes = "1.0"
# only so cargo-fairy picks it up..
cbindgen = "0.26.0"
futures = "0.3"
hex = "0.4.3"
h2 = { version = "0.4", features = [ "stream" ] }
lazy_static = "1.4"
libc = "0.2"
once_cell = "1.5"
openssl = "0.10"
proxmox-async = "0.4"
proxmox-lang = "1"
proxmox-schema = { version = "3", features = [ "api-macro" ] }
proxmox-sortable-macro = "0.1.2"
proxmox-sys = "0.6"
pbs-api-types = { path = "submodules/proxmox-backup/pbs-api-types" }
pbs-client = { path = "submodules/proxmox-backup/pbs-client" }
pbs-datastore = { path = "submodules/proxmox-backup/pbs-datastore" }
pbs-key-config = { path = "submodules/proxmox-backup/pbs-key-config" }
pbs-tools = { path = "submodules/proxmox-backup/pbs-tools" }
serde_json = "1.0"
tokio = { version = "1.6", features = [ "fs", "io-util", "macros", "net", "rt-multi-thread", "signal", "time" ] }
tokio-stream = "0.1.1"
bincode = "1.0"