mirror of
https://git.proxmox.com/git/proxmox-backup
synced 2025-04-28 14:37:35 +00:00

pbs-buildcfg is the only one that needs to inherit the version as well, since it stores it in the compiled crate. Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
42 lines
1.2 KiB
TOML
42 lines
1.2 KiB
TOML
[package]
|
|
name = "proxmox-backup-client"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
futures = "0.3"
|
|
hyper = { version = "0.14", features = [ "full" ] }
|
|
libc = "0.2"
|
|
log = "0.4"
|
|
nix = "0.24"
|
|
openssl = "0.10"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tokio = { version = "1.6", features = [ "rt", "rt-multi-thread" ] }
|
|
tokio-stream = "0.1.0"
|
|
tokio-util = { version = "0.7", features = [ "codec", "io" ] }
|
|
xdg = "2.2"
|
|
zstd = { version = "0.6", features = [ "bindgen" ] }
|
|
|
|
pathpatterns = "0.1.2"
|
|
pxar = { version = "0.10.2", features = [ "tokio-io" ] }
|
|
|
|
proxmox-async = "0.4"
|
|
proxmox-fuse = "0.1.3"
|
|
proxmox-io = "1.0.1"
|
|
proxmox-router = { version = "1.3.0", features = [ "cli" ] }
|
|
proxmox-schema = { version = "1.3.1", features = [ "api-macro" ] }
|
|
proxmox-sys = { version = "0.4.1", features = [ "sortable-macro" ] }
|
|
proxmox-time = "1"
|
|
|
|
pbs-api-types = { path = "../pbs-api-types" }
|
|
pbs-buildcfg = { path = "../pbs-buildcfg" }
|
|
pbs-client = { path = "../pbs-client" }
|
|
pbs-config = { path = "../pbs-config" }
|
|
pbs-datastore = { path = "../pbs-datastore" }
|
|
pbs-fuse-loop = { path = "../pbs-fuse-loop" }
|
|
pbs-pxar-fuse = { path = "../pbs-pxar-fuse" }
|
|
pbs-tools = { path = "../pbs-tools" }
|