Skip to content
Merged
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
2 changes: 0 additions & 2 deletions .cargo/audit.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,4 @@ ignore = [
"RUSTSEC-2021-0006",
# atomic-polyfill unmaintained — transitive via heapless 0.7.17 → postcard 1.1.3 → sema/krypta. heapless 0.8+ drops atomic-polyfill in favor of portable-atomic, but postcard 1.x has not yet bumped its heapless pin past 0.7. Track postcard upstream for the heapless bump.
"RUSTSEC-2023-0089",
# proc-macro-error2 unmaintained — lockfile-only presence in the kernel graph via smoltcp 0.12's optional defmt feature (defmt-macros → defmt). The kernel enables smoltcp with default-features = false and no defmt feature, so the crate is never compiled. No safe upgrade until defmt migrates off proc-macro-error2. Surfaced by the #547 multi-graph scan.
"RUSTSEC-2026-0173",
]
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ sha2 = "0.11"
x25519-dalek = { version = "3", features = ["static_secrets", "zeroize"] }

# Networking
smoltcp = { version = "0.13", default-features = false, features = [
smoltcp = { version = "0.14", default-features = false, features = [
"medium-ethernet",
"proto-ipv4",
"proto-ipv6",
Expand Down
15 changes: 3 additions & 12 deletions crates/thumos/Cargo.lock

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

2 changes: 1 addition & 1 deletion crates/thumos/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ serde = { version = "1", default-features = false, features = [
"derive",
"alloc",
] }
smoltcp = { version = "0.13", default-features = false, features = [
smoltcp = { version = "0.14", default-features = false, features = [
"medium-ethernet",
"proto-ipv4",
"socket-tcp",
Expand Down
4 changes: 0 additions & 4 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,6 @@ reason = "False positive: same collision as RUSTSEC-2020-0128. The flagged `cach
id = "RUSTSEC-2023-0089"
reason = "atomic-polyfill unmaintained — transitive via heapless 0.7.17 → postcard 1.1.3 → sema/krypta. heapless 0.8+ drops atomic-polyfill in favor of portable-atomic, but postcard 1.x has not yet bumped its heapless pin past 0.7. Track postcard upstream for the heapless bump."

[[advisories.ignore]]
id = "RUSTSEC-2026-0173"
reason = "proc-macro-error2 unmaintained — lockfile-only presence in the kernel graph via smoltcp 0.12's optional defmt feature (defmt-macros → defmt). The kernel enables smoltcp with default-features = false and no defmt feature, so the crate is never compiled. No safe upgrade until defmt migrates off proc-macro-error2. Surfaced by the #547 multi-graph scan."

[licenses]
# WHY: license allow list mirrors aletheia's deny.toml. Each addition over
# kanon's original list is for a real transitive dep:
Expand Down
4 changes: 2 additions & 2 deletions fuzz/Cargo.lock

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

4 changes: 0 additions & 4 deletions osv-scanner.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,3 @@ reason = "False positive: same collision as RUSTSEC-2020-0128. The flagged `cach
[[IgnoredVulns]]
id = "RUSTSEC-2023-0089"
reason = "atomic-polyfill unmaintained — transitive via heapless 0.7.17 → postcard 1.1.3 → sema/krypta. heapless 0.8+ drops atomic-polyfill in favor of portable-atomic, but postcard 1.x has not yet bumped its heapless pin past 0.7. Track postcard upstream for the heapless bump."

[[IgnoredVulns]]
id = "RUSTSEC-2026-0173"
reason = "proc-macro-error2 unmaintained — lockfile-only presence in the kernel graph via smoltcp 0.12's optional defmt feature (defmt-macros → defmt). The kernel enables smoltcp with default-features = false and no defmt feature, so the crate is never compiled. No safe upgrade until defmt migrates off proc-macro-error2. Surfaced by the #547 multi-graph scan."
Loading