Skip to content

Commit b076703

Browse files
committed
fix: lint fixes
1 parent d10f4aa commit b076703

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,4 +106,4 @@ Key web UI files:
106106
- Structured logging with `tracing`
107107
- No inline `mod`s - use standalone modules
108108
- Event-driven architecture with cryptographic verification
109-
- Supports multi-device sync through event DAG merging
109+
- Supports multi-device sync through event DAG merging

crates/axum-dpc-static-assets/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,6 @@ impl StaticAssetService {
265265
fn handle_request(&self, req: Request<Body>) -> Response<Body> {
266266
let path = req.uri().path().trim_start_matches('/');
267267
let Some(asset) = self.assets.get(path) else {
268-
dbg!("NOT FOUND", path);
269268
return (StatusCode::NOT_FOUND, Body::empty()).into_response();
270269
};
271270

crates/bots/rostra-bot-hn/Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ bincode = { workspace = true }
1818
clap = { workspace = true }
1919
futures = { workspace = true }
2020
redb-bincode = { workspace = true }
21-
reqwest = { workspace = true, features = ["rustls-tls"], default-features = false }
21+
reqwest = { workspace = true, features = [
22+
"rustls-tls",
23+
], default-features = false }
2224
rostra-client = { workspace = true }
2325
rostra-client-db = { workspace = true }
2426
rostra-core = { workspace = true }
@@ -30,4 +32,4 @@ snafu = { workspace = true }
3032
tokio = { workspace = true, features = ["time"] }
3133
tracing = { workspace = true }
3234
tracing-subscriber = { workspace = true }
33-
url = { workspace = true }
35+
url = { workspace = true }

crates/rostra-util-bind-addr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ edition.workspace = true
55
license.workspace = true
66

77
[dependencies]
8-
serde = { workspace = true, features = ["derive"] }
8+
serde = { workspace = true, features = ["derive"] }

0 commit comments

Comments
 (0)