2021-07-06 11:26:35 +00:00
|
|
|
[package]
|
|
|
|
name = "pbs-tools"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Proxmox Support Team <support@proxmox.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
description = "common tools used throughout pbs"
|
|
|
|
|
|
|
|
# This must not depend on any subcrates more closely related to pbs itself.
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0"
|
2021-07-12 09:07:52 +00:00
|
|
|
base64 = "0.12"
|
2021-07-15 10:15:50 +00:00
|
|
|
foreign-types = "0.3"
|
|
|
|
futures = "0.3"
|
|
|
|
lazy_static = "1.4"
|
2021-07-06 11:26:35 +00:00
|
|
|
libc = "0.2"
|
|
|
|
nix = "0.19.1"
|
2021-07-07 08:10:33 +00:00
|
|
|
nom = "5.1"
|
2021-07-09 12:10:15 +00:00
|
|
|
openssl = "0.10"
|
2021-07-12 09:07:52 +00:00
|
|
|
percent-encoding = "2.1"
|
2021-07-06 11:26:35 +00:00
|
|
|
regex = "1.2"
|
|
|
|
serde = "1.0"
|
|
|
|
serde_json = "1.0"
|
2021-07-15 10:15:50 +00:00
|
|
|
# rt-multi-thread is required for block_in_place
|
|
|
|
tokio = { version = "1.6", features = [ "rt", "rt-multi-thread", "sync" ] }
|
2021-07-12 09:07:52 +00:00
|
|
|
url = "2.1"
|
2021-07-06 11:26:35 +00:00
|
|
|
|
|
|
|
proxmox = { version = "0.11.5", default-features = false, features = [] }
|
2021-07-15 10:15:50 +00:00
|
|
|
|
|
|
|
pbs-buildcfg = { path = "../pbs-buildcfg" }
|