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"] }
|
|
|
|
nix = "0.19.1"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
|
|
|
bitflags = "1.2.1"
|
|
|
|
regex = "1.2"
|
|
|
|
udev = ">= 0.3, <0.5"
|
|
|
|
|
2021-09-28 08:11:56 +00:00
|
|
|
proxmox = { version = "0.13.5", default-features = false, features = [] }
|
2021-09-13 09:54:24 +00:00
|
|
|
|
|
|
|
pbs-api-types = { path = "../pbs-api-types" }
|
|
|
|
pbs-tools = { path = "../pbs-tools" }
|
|
|
|
pbs-config = { path = "../pbs-config" }
|