Skip to content
Merged
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
5 changes: 2 additions & 3 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ ignore = [
{ id = "RUSTSEC-2024-0437", reason = "protobuf-rs stackoverflow in deep nested messages, not fixed yet" },
{ id = "RUSTSEC-2025-0057", reason = "fxhash is not maintained anymore, currently used only by raft-rs" },
{ id = "RUSTSEC-2025-0141", reason = "bincode is no longer maintained, it's only used by restate-queue which will soon be removed" },
{ id = "RUSTSEC-2026-0173", reason = "The author of `proc-macro-error2` has [confirmed](https://github.com/GnomedDev/proc-macro-error-2/issues/17#issuecomment-4643215473) that the crate is no longer maintained and recommends that users migrate away from it" },

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Which of our crates/dependencies are using the affected dependency?

@muhamadazmy muhamadazmy Jun 8, 2026

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

raft

proc-macro-error2 v2.0.1
└── getset v0.1.6 (proc-macro)
    └── raft v0.7.0 (https://github.com/restatedev/raft-rs?rev=9bab5c275ce25341f719c4f898bdca9577850a5d#9bab5c27)
        └── restate-metadata-server v1.7.0-rc.2 (/home/azmy/Projects/restate/crates/metadata-server)
            ├── restate-node v1.7.0-rc.2 (/home/azmy/Projects/restate/crates/node)
            │   └── restate-server v1.7.0-rc.2 (/home/azmy/Projects/restate/server)
            │   [dev-dependencies]
            │   └── restate-server v1.7.0-rc.2 (/home/azmy/Projects/restate/server)
            ├── restate-server v1.7.0-rc.2 (/home/azmy/Projects/restate/server)
            └── restate-worker v1.7.0-rc.2 (/home/azmy/Projects/restate/crates/worker)
                └── restate-node v1.7.0-rc.2 (/home/azmy/Projects/restate/crates/node) (*)
            [dev-dependencies]
            └── restate-server v1.7.0-rc.2 (/home/azmy/Projects/restate/server)

]


Expand Down Expand Up @@ -112,9 +113,7 @@ unknown-registry = "deny"
# in the allow list is encountered
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
allow-git = [
"https://github.com/apache/arrow-rs.git",
]
allow-git = ["https://github.com/apache/arrow-rs.git"]

[sources.allow-org]
# 1 or more github.com organizations to allow git sources for
Expand Down
Loading