2021-09-01 13:21:51 +03:00
[ package ]
name = "proxmox-file-restore"
version = "0.1.0"
authors = [ "Proxmox Support Team <support@proxmox.com>" ]
2022-12-06 13:19:41 +03:00
edition = "2021"
2021-09-01 13:21:51 +03:00
[ dependencies ]
anyhow = "1.0"
2021-11-18 16:12:59 +03:00
base64 = "0.13"
2021-09-01 13:21:51 +03:00
futures = "0.3"
libc = "0.2"
2022-06-02 14:10:33 +03:00
nix = "0.24"
2022-06-15 11:19:53 +03:00
log = "0.4"
2021-09-01 13:21:51 +03:00
serde = { version = "1.0" , features = [ "derive" ] }
serde_json = "1.0"
tokio = { version = "1.6" , features = [ "io-std" , "rt" , "rt-multi-thread" , "time" ] }
2022-07-13 12:43:14 +03:00
tokio-util = { version = "0.7" , features = [ "io" ] }
2021-09-01 13:21:51 +03:00
2022-11-23 17:47:07 +03:00
pxar = { version = "0.10.2" , features = [ "tokio-io" ] }
2021-09-01 13:21:51 +03:00
2021-11-23 19:57:00 +03:00
#proxmox = { version = "0.15.3" }
2022-02-21 16:25:29 +03:00
proxmox-async = "0.4"
2022-02-21 16:24:24 +03:00
proxmox-lang = "1.1"
2022-09-07 10:21:41 +03:00
proxmox-router = { version = "1.3.0" , features = [ "cli" ] }
2022-04-13 09:20:27 +03:00
proxmox-schema = { version = "1.3.1" , features = [ "api-macro" ] }
2021-10-08 12:19:37 +03:00
proxmox-time = "1"
proxmox-uuid = "1"
2022-10-19 15:22:38 +03:00
proxmox-sys = { version = "0.4.1" , features = [ "logrotate" ] }
2022-07-13 12:43:14 +03:00
proxmox-compression = "0.1"
2021-09-01 13:21:51 +03:00
pbs-api-types = { path = "../pbs-api-types" }
pbs-buildcfg = { path = "../pbs-buildcfg" }
2021-09-07 10:22:14 +03:00
pbs-config = { path = "../pbs-config" }
2021-09-01 13:21:51 +03:00
pbs-client = { path = "../pbs-client" }
pbs-datastore = { path = "../pbs-datastore" }
pbs-tools = { path = "../pbs-tools" }