2021-09-13 09:54:24 +00:00
|
|
|
[package]
|
|
|
|
name = "pbs-tape"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Proxmox Support Team <support@proxmox.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
description = "LTO tage support"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
lazy_static = "1.4"
|
|
|
|
libc = "0.2"
|
|
|
|
anyhow = "1.0"
|
|
|
|
thiserror = "1.0"
|
|
|
|
endian_trait = { version = "0.6", features = ["arrays"] }
|
2021-11-23 16:57:00 +00:00
|
|
|
hex = "0.4.3"
|
2022-06-02 11:10:33 +00:00
|
|
|
nix = "0.24"
|
2021-09-13 09:54:24 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
|
|
|
bitflags = "1.2.1"
|
2021-12-16 10:12:17 +00:00
|
|
|
regex = "1.5"
|
2021-10-22 12:28:32 +00:00
|
|
|
udev = "0.4"
|
2021-09-13 09:54:24 +00:00
|
|
|
|
2021-10-08 09:19:37 +00:00
|
|
|
proxmox-io = "1"
|
2022-02-21 13:24:24 +00:00
|
|
|
proxmox-lang = "1.1"
|
2021-10-08 09:19:37 +00:00
|
|
|
# api-macro is only used by the binaries, so maybe we should split them out
|
2022-04-13 06:20:27 +00:00
|
|
|
proxmox-schema = { version = "1.3.1", features = [ "api-macro" ] }
|
2021-10-08 09:19:37 +00:00
|
|
|
proxmox-time = "1"
|
|
|
|
proxmox-uuid = "1"
|
|
|
|
|
|
|
|
# router::cli is only used by binaries, so maybe we should split them out
|
2022-04-13 06:17:08 +00:00
|
|
|
proxmox-router = "1.2"
|
2022-06-02 11:10:33 +00:00
|
|
|
proxmox-sys = "0.3"
|
2021-09-13 09:54:24 +00:00
|
|
|
|
|
|
|
pbs-api-types = { path = "../pbs-api-types" }
|
|
|
|
pbs-config = { path = "../pbs-config" }
|