4189221470
noteworthy changes: - proxmox-http had a default_features_false dep on hyper, which is dropped (the default feature is empty anyway) - hyper, libc, nix, tokio and url versions are unified - missing (cosmetic) bindgen feature on zstd enabled everywhere Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
60 lines
1.3 KiB
TOML
60 lines
1.3 KiB
TOML
[workspace]
|
|
members = [
|
|
"proxmox-api-macro",
|
|
"proxmox-async",
|
|
"proxmox-borrow",
|
|
"proxmox-compression",
|
|
"proxmox-http",
|
|
"proxmox-io",
|
|
"proxmox-lang",
|
|
"proxmox-metrics",
|
|
"proxmox-rest-server",
|
|
"proxmox-router",
|
|
"proxmox-schema",
|
|
"proxmox-serde",
|
|
"proxmox-shared-memory",
|
|
"proxmox-section-config",
|
|
"proxmox-sortable-macro",
|
|
"proxmox-subscription",
|
|
"proxmox-sys",
|
|
"proxmox-tfa",
|
|
"proxmox-time",
|
|
"proxmox-uuid",
|
|
]
|
|
exclude = [
|
|
"build",
|
|
]
|
|
[workspace.package]
|
|
authors = ["Proxmox Support Team <support@proxmox.com>"]
|
|
edition = "2021"
|
|
license = "AGPL-3"
|
|
repository = "https://git.proxmox.com/?p=proxmox.git"
|
|
exclude = [ "debian" ]
|
|
|
|
[workspace.dependencies]
|
|
# any features enabled here are enabled on all members using 'workspace = true'!
|
|
|
|
# external dependencies
|
|
anyhow = "1.0"
|
|
base64 = "0.13"
|
|
endian_trait = "0.6"
|
|
futures = "0.3"
|
|
hex = "0.4"
|
|
http = "0.2"
|
|
hyper = "0.14.5"
|
|
lazy_static = "1.4"
|
|
libc = "0.2.107"
|
|
log = "0.4.17"
|
|
nix = "0.24.1"
|
|
openssl = "0.10"
|
|
percent-encoding = "2.1"
|
|
proc-macro2 = "1.0"
|
|
quote = "1.0"
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
syn = { version = "1.0", features = [ "full", "visit-mut" ] }
|
|
tokio = "1.6"
|
|
tokio-openssl = "0.6.1"
|
|
url = "2.2"
|
|
zstd = { version = "0.6", features = [ "bindgen" ] }
|