Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
147 changes: 125 additions & 22 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion rust_http_proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ pin-project-lite.workspace = true
prometheus-client.workspace = true
flate2 = { version = "1.0" }
async-compression = { version = "0.4", features = ["tokio", "gzip"] }
clap = { version = "4.4", features = ["derive"] }
clap = { version = "4.4", features = ["derive", "env"] }
dotenvy = { version = "0", features = ["cli"] }
Copy link

Copilot AI Feb 21, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

dotenvy = { version = "0", features = ["cli"] } is overly broad and the cli feature pulls in an additional (older) clap dependency (visible in Cargo.lock as clap 3.x). Since the code only uses dotenvy::dotenv(), drop the cli feature and pin an explicit compatible dotenvy version to avoid duplicate clap versions and extra transitive deps.

Suggested change
dotenvy = { version = "0", features = ["cli"] }
dotenvy = "0.15"

Copilot uses AI. Check for mistakes.
base64 = "0.22"
jemallocator = { version = "0.5", optional = true }
mimalloc = { version = "0.1", optional = true }
Expand Down
Loading