]> git.proxmox.com Git - proxmox-backup.git/blob - pbs-tape/Cargo.toml
e11a835ab283f117bdbe38a0562297efd226c683
[proxmox-backup.git] / pbs-tape / Cargo.toml
1 [package]
2 name = "pbs-tape"
3 version = "0.1.0"
4 authors = ["Proxmox Support Team <support@proxmox.com>"]
5 edition = "2018"
6 description = "LTO tage support"
7
8 [dependencies]
9 lazy_static = "1.4"
10 libc = "0.2"
11 anyhow = "1.0"
12 thiserror = "1.0"
13 endian_trait = { version = "0.6", features = ["arrays"] }
14 nix = "0.19.1"
15 serde = { version = "1.0", features = ["derive"] }
16 serde_json = "1.0"
17 bitflags = "1.2.1"
18 regex = "1.2"
19 udev = "0.4"
20
21 proxmox = "0.15.3"
22 proxmox-io = "1"
23 proxmox-lang = "1"
24 # api-macro is only used by the binaries, so maybe we should split them out
25 proxmox-schema = { version = "1", features = [ "api-macro" ] }
26 proxmox-time = "1"
27 proxmox-uuid = "1"
28
29 # router::cli is only used by binaries, so maybe we should split them out
30 proxmox-router = "1.1"
31
32 pbs-api-types = { path = "../pbs-api-types" }
33 pbs-tools = { path = "../pbs-tools" }
34 pbs-config = { path = "../pbs-config" }