2021-07-07 07:04:09 +00:00
|
|
|
[package]
|
|
|
|
name = "pbs-api-types"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Proxmox Support Team <support@proxmox.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
description = "general API type helpers for PBS"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-07-07 07:53:48 +00:00
|
|
|
anyhow = "1.0"
|
2021-11-17 06:07:40 +00:00
|
|
|
hex = "0.4.3"
|
2021-07-07 07:04:09 +00:00
|
|
|
lazy_static = "1.4"
|
2021-11-25 10:48:52 +00:00
|
|
|
percent-encoding = "2.1"
|
2021-07-07 07:04:09 +00:00
|
|
|
regex = "1.2"
|
2021-07-07 07:53:48 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2021-07-07 07:04:09 +00:00
|
|
|
|
2021-10-08 09:19:37 +00:00
|
|
|
proxmox-lang = "1.0.0"
|
2021-11-06 17:46:58 +00:00
|
|
|
proxmox-schema = { version = "1.0.1", features = [ "api-macro" ] }
|
2021-11-23 16:57:00 +00:00
|
|
|
proxmox-serde = "0.1"
|
2021-11-30 12:12:09 +00:00
|
|
|
proxmox-time = "1.1.1"
|
2021-10-08 09:19:37 +00:00
|
|
|
proxmox-uuid = { version = "1.0.0", features = [ "serde" ] }
|
2021-11-23 16:57:00 +00:00
|
|
|
|
2021-12-01 08:28:47 +00:00
|
|
|
[target.'cfg(not(target_arch="wasm32"))'.dependencies]
|
2021-12-01 08:49:52 +00:00
|
|
|
proxmox-sys = "0.2" # only needed for nodename()??
|
2021-12-01 08:28:47 +00:00
|
|
|
openssl = "0.10"
|