2019-09-11 10:35:05 +02:00
[ package ]
name = "proxmox-backup-qemu"
2025-01-30 13:57:06 +01:00
version = "1.5.1"
2019-09-11 10:35:05 +02:00
authors = [
"Dietmar Maurer <dietmar@proxmox.com>" ,
2020-10-22 10:13:47 +02:00
"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>" ,
]
2022-12-12 13:05:40 +01:00
edition = "2021"
2019-09-11 10:35:05 +02:00
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 ]
2023-10-03 12:00:41 +02:00
cbindgen = "0.26.0"
2019-09-11 10:35:05 +02:00
[ dependencies ]
2020-08-12 09:30:22 +02:00
anyhow = "1.0"
2020-12-07 13:58:56 +01:00
bytes = "1.0"
2023-01-19 11:14:10 +01:00
# only so cargo-fairy picks it up..
2023-10-03 12:00:41 +02:00
cbindgen = "0.26.0"
2020-02-12 13:01:20 +01:00
futures = "0.3"
2021-11-05 13:16:43 +01:00
hex = "0.4.3"
2024-09-04 10:09:57 +02:00
h2 = { version = "0.4" , features = [ "stream" ] }
2020-06-25 12:23:32 +02:00
lazy_static = "1.4"
2020-08-12 09:30:22 +02:00
libc = "0.2"
2021-02-12 11:13:22 +01:00
once_cell = "1.5"
2020-08-12 09:30:22 +02:00
openssl = "0.10"
2021-11-05 13:16:43 +01:00
2022-05-12 12:21:06 +02:00
proxmox-async = "0.4"
2021-11-05 13:16:43 +01:00
proxmox-lang = "1"
2025-01-17 10:13:09 +01:00
proxmox-schema = { version = "4" , features = [ "api-macro" ] }
2023-05-27 17:47:42 +02:00
proxmox-sortable-macro = "0.1.2"
2024-09-04 10:09:57 +02:00
proxmox-sys = "0.6"
2021-11-05 13:16:43 +01:00
2025-01-24 08:23:33 +01:00
pbs-api-types = { version = "0.2" }
2023-05-27 17:37:49 +02:00
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" }
2021-11-05 13:16:43 +01:00
2020-08-12 09:30:22 +02:00
serde_json = "1.0"
2021-06-16 13:52:24 +02:00
tokio = { version = "1.6" , features = [ "fs" , "io-util" , "macros" , "net" , "rt-multi-thread" , "signal" , "time" ] }
2020-12-07 13:58:56 +01:00
tokio-stream = "0.1.1"
2020-10-22 17:34:19 +02:00
bincode = "1.0"