simple-web-app

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 30fcb4529e8eaf0909961f76dbda2018edd44b05
parent d7750e12958d11b2fe38eeadfa6c728c15546cde
Author: Silas Brack <silasbrack@gmail.com>
Date:   Sat, 25 Apr 2026 12:19:10 +0200

refactor: remove tower-http compression layer

nginx already handles gzip compression at the reverse proxy layer,
making application-level compression redundant.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

Diffstat:
MCargo.lock | 79++-----------------------------------------------------------------------------
MCargo.toml | 1-
Msrc/main.rs | 2--
3 files changed, 2 insertions(+), 80 deletions(-)

diff --git a/Cargo.lock b/Cargo.lock @@ -3,12 +3,6 @@ version = 4 [[package]] -name = "adler2" -version = "2.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" - -[[package]] name = "askama" version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -53,18 +47,6 @@ dependencies = [ ] [[package]] -name = "async-compression" -version = "0.4.41" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d0f9ee0f6e02ffd7ad5816e9464499fba7b3effd01123b515c41d1697c43dad1" -dependencies = [ - "compression-codecs", - "compression-core", - "pin-project-lite", - "tokio", -] - -[[package]] name = "async-trait" version = "0.1.89" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -288,23 +270,6 @@ dependencies = [ ] [[package]] -name = "compression-codecs" -version = "0.4.37" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb7b51a7d9c967fc26773061ba86150f19c50c0d65c887cb1fbe295fd16619b7" -dependencies = [ - "compression-core", - "flate2", - "memchr", -] - -[[package]] -name = "compression-core" -version = "0.4.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75984efb6ed102a0d42db99afb6c1948f0380d1d91808d5529916e6c08b49d8d" - -[[package]] name = "const-oid" version = "0.9.6" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -357,15 +322,6 @@ dependencies = [ ] [[package]] -name = "crc32fast" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" -dependencies = [ - "cfg-if", -] - -[[package]] name = "crypto-bigint" version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -577,16 +533,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" [[package]] -name = "flate2" -version = "1.1.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c" -dependencies = [ - "crc32fast", - "miniz_oxide", -] - -[[package]] name = "fnv" version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1121,9 +1067,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.185" +version = "0.2.186" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f" +checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66" [[package]] name = "libm" @@ -1193,16 +1139,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" [[package]] -name = "miniz_oxide" -version = "0.8.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" -dependencies = [ - "adler2", - "simd-adler32", -] - -[[package]] name = "mio" version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1922,12 +1858,6 @@ dependencies = [ ] [[package]] -name = "simd-adler32" -version = "0.3.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214" - -[[package]] name = "simple-web-app" version = "0.1.0" dependencies = [ @@ -1938,7 +1868,6 @@ dependencies = [ "serde_json", "thiserror 2.0.18", "tokio", - "tower-http", "trailbase-client", ] @@ -2211,17 +2140,13 @@ version = "0.6.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" dependencies = [ - "async-compression", "bitflags", "bytes", - "futures-core", "futures-util", "http", "http-body", "iri-string", "pin-project-lite", - "tokio", - "tokio-util", "tower", "tower-layer", "tower-service", diff --git a/Cargo.toml b/Cargo.toml @@ -8,7 +8,6 @@ axum = "0.8" axum-extra = { version = "0.10", features = ["cookie"] } askama = "0.12" tokio = { version = "1", features = ["macros", "rt-multi-thread", "net"] } -tower-http = { version = "0.6", features = ["compression-gzip"] } serde = { version = "1", features = ["derive"] } serde_json = "1" thiserror = "2" diff --git a/src/main.rs b/src/main.rs @@ -3,7 +3,6 @@ use axum::{ http::{Request, Response}, middleware::{self, Next}, }; -use tower_http::compression::CompressionLayer; mod config; mod db; @@ -49,7 +48,6 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> { let state = AppState::new(&config); let app = routes::create_router(state) - .layer(CompressionLayer::new()) .layer(middleware::from_fn(cache_control_middleware)); let addr = format!("0.0.0.0:{}", config.port);