[pbs-devel] [PATCH proxmox 01/17] http: order feature values
Fabian Grünbichler
f.gruenbichler at proxmox.com
Wed Mar 26 16:23:05 CET 2025
put optional dependencies first, followed by features on external
crates, followed by internal features.
Signed-off-by: Fabian Grünbichler <f.gruenbichler at proxmox.com>
---
proxmox-http/Cargo.toml | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/proxmox-http/Cargo.toml b/proxmox-http/Cargo.toml
index c8c963f7..5edf304d 100644
--- a/proxmox-http/Cargo.toml
+++ b/proxmox-http/Cargo.toml
@@ -43,8 +43,8 @@ rate-limited-stream = [
"dep:hyper",
"dep:tokio",
"hyper?/client",
- "rate-limiter",
"tokio?/time",
+ "rate-limiter",
]
client = [
"dep:futures",
@@ -53,14 +53,14 @@ client = [
"dep:proxmox-compression",
"dep:tokio",
"dep:tokio-openssl",
- "http-helpers",
"hyper?/client",
"hyper?/http1",
"hyper?/http2",
"hyper?/stream",
"hyper?/tcp",
- "rate-limited-stream",
"tokio?/io-util",
+ "http-helpers",
+ "rate-limited-stream",
]
client-sync = [ "client-trait", "http-helpers", "dep:ureq", "dep:native-tls" ]
client-trait = [ "dep:http" ]
@@ -72,9 +72,9 @@ websocket = [
"dep:openssl",
"dep:proxmox-sys",
"dep:proxmox-io",
- "proxmox-io?/tokio",
"dep:proxmox-lang",
"dep:tokio",
+ "proxmox-io?/tokio",
"tokio?/io-util",
"tokio?/sync",
]
--
2.39.5
More information about the pbs-devel
mailing list