feat(performance): Disable request features to reduce binary size

This commit is contained in:
2026-04-03 05:37:36 +02:00
parent ebca3f5783
commit 30c3cb16a2
2 changed files with 126 additions and 552 deletions
+5 -1
View File
@@ -18,7 +18,11 @@ clap_complete = "4.6.0"
gix-discover = "0.48.0"
minijinja = { version = "2.18.0", features = ["json", "loader"] }
optional_struct = "0.5.2"
reqwest = { version = "0.13.2", features = ["blocking"] }
reqwest = { version = "0.13.2", default-features = false, features = [
"blocking",
"stream",
"native-tls",
] }
schemars = { workspace = true }
semver = { version = "1.0.27", features = ["serde"] }
serde = { version = "1.0.228", features = ["derive"] }