Skip to content

Commit 2eec6b0

Browse files
fix(deps): update ignored security advisories (#170)
1 parent 7cdc236 commit 2eec6b0

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deny.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ ignore = [
66
{ id = "RUSTSEC-2023-0089", reason = "No maintained version available for `atomic-polyfill`." },
77
{ id = "RUSTSEC-2024-0436", reason = "No maintained version available for `paste`." },
88
{ id = "RUSTSEC-2026-0173", reason = "No maintained version available for `proc-macro-error2`." },
9+
{ id = "RUSTSEC-2026-0194", reason = "No safe upgrade available for `quick-xml` due to other depedencies." },
10+
{ id = "RUSTSEC-2026-0195", reason = "No safe upgrade available for `quick-xml` due to other depedencies." },
911
]
1012
yanked = "deny"
1113

examples/server/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ async fn main() -> Result<(), Box<dyn Error>> {
1818
let address = SocketAddr::new(IpAddr::V4(Ipv4Addr::new(127, 0, 0, 1)), 8080);
1919
let listener = TcpListener::bind(&address).await?;
2020

21-
println!("listening on http://{}", &address);
21+
println!("listening on http://{}", address);
2222
axum::serve(listener, router).await?;
2323

2424
Ok(())

0 commit comments

Comments
 (0)