mirror of
git://git.proxmox.com/git/proxmox-backup.git
synced 2025-01-06 13:18:00 +03:00
781294e4b5
where applicable. notable changes: - serde now uses 'derive' feature across the board - serde removed from pbs-tools (not used) - openssl bumped to 0.40 (and patched comment removed) - removed invalid zstd comment Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
36 lines
972 B
TOML
36 lines
972 B
TOML
[package]
|
|
name = "proxmox-file-restore"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
base64.workspace = true
|
|
futures.workspace = true
|
|
libc.workspace = true
|
|
nix.workspace = true
|
|
log.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tokio = { workspace = true, features = [ "io-std", "rt", "rt-multi-thread", "time" ] }
|
|
tokio-util.workspace = true
|
|
|
|
pxar.workspace = true
|
|
|
|
proxmox-async.workspace = true
|
|
proxmox-lang.workspace=true
|
|
proxmox-router = { workspace = true, features = [ "cli" ] }
|
|
proxmox-schema = { workspace = true, features = [ "api-macro" ] }
|
|
proxmox-time.workspace = true
|
|
proxmox-uuid.workspace = true
|
|
proxmox-sys = { workspace = true, features = [ "logrotate" ] }
|
|
proxmox-compression.workspace = true
|
|
|
|
pbs-api-types.workspace = true
|
|
pbs-buildcfg.workspace = true
|
|
pbs-config.workspace = true
|
|
pbs-client.workspace = true
|
|
pbs-datastore.workspace = true
|
|
pbs-tools.workspace = true
|