Skip to content

Commit

Permalink
feat(aggregator): enable HTTP compression using reqwest features
Browse files Browse the repository at this point in the history
  • Loading branch information
dlachaume committed Feb 6, 2025
1 parent 4257c44 commit 1686182
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion mithril-aggregator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,13 @@ paste = "1.0.15"
prometheus = "0.13.4"
rayon = "1.10.0"
regex = "1.11.1"
reqwest = { version = "0.12.12", features = ["json"] }
reqwest = { version = "0.12.12", features = [
"json",
"gzip",
"zstd",
"deflate",
"brotli"
] }
semver = "1.0.25"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.138"
Expand Down

0 comments on commit 1686182

Please sign in to comment.