proxmox-backup/proxmox-backup-client/Cargo.toml
Fabian Grünbichler 7869cb3921 adapt to hyper/http 1.0
similar to the other changes:
- Body to Incoming or proxmox-http's Body
- use adapters between hyper<->tower and hyper<->tokio
- adapt to new proxmox-rest-server interfaces

Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
2025-06-16 13:59:37 +02:00

45 lines
1.2 KiB
TOML

[package]
name = "proxmox-backup-client"
version = "0.1.0"
authors.workspace = true
edition.workspace = true
[dependencies]
anyhow.workspace = true
futures.workspace = true
hyper.workspace = true
log.workspace = true
nix.workspace = true
openssl.workspace = true
serde.workspace = true
serde_json.workspace = true
tokio = { workspace = true, features = [ "rt", "rt-multi-thread" ] }
tokio-stream.workspace = true
tokio-util = { workspace = true, features = [ "codec" ] }
xdg.workspace = true
zstd.workspace = true
pathpatterns.workspace = true
pxar.workspace = true
proxmox-async.workspace = true
proxmox-human-byte.workspace = true
proxmox-http = { workspace = true, features = [ "body" ] }
proxmox-log.workspace = true
proxmox-io.workspace = true
proxmox-router = { workspace = true, features = [ "cli" ] }
proxmox-schema = { workspace = true, features = [ "api-macro" ] }
proxmox-sortable-macro.workspace = true
proxmox-sys.workspace = true
proxmox-systemd.workspace = true
proxmox-time.workspace = true
pbs-api-types.workspace = true
pbs-buildcfg.workspace = true
pbs-client.workspace = true
pbs-datastore.workspace = true
pbs-fuse-loop.workspace = true
pbs-key-config.workspace = true
pbs-pxar-fuse.workspace = true
pbs-tools.workspace = true