⚠ This page is served via a proxy. Original site: https://github.com
This service does not collect credentials or authentication data.
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
88 changes: 87 additions & 1 deletion deny.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,89 @@
[bans]
deny = ["reth"]
multiple-versions = "allow"
multiple-versions = "deny"

# Skip crates with multiple versions from upstream dependencies that we cannot control
# These are primarily from reth, alloy, and kona dependencies
skip = [
# Alloy version mismatch between workspace (0.4.x) and kona-registry (0.2.x)
"alloy-hardforks",
"alloy-op-hardforks",

# Windows platform crates - different versions used by various upstream deps
"windows-sys",
"windows",
"windows-core",
"windows-implement",
"windows-interface",
"windows-result",
"windows-targets",
"windows_aarch64_gnullvm",
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_gnullvm",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_gnullvm",
"windows_x86_64_msvc",

# Core macro/derive crates - commonly have version differences across ecosystem
"syn",
"darling",
"darling_core",
"darling_macro",
"thiserror",
"thiserror-impl",
"strum",
"strum_macros",
"proptest-derive",

# Crypto/random crates - version differences from different crypto stacks
"rand",
"rand_core",
"rand_chacha",
"getrandom",
"secp256k1",
"secp256k1-sys",

# Hash/collection crates
"hashbrown",
"foldhash",
"itertools",
"lru",
"dashmap",

# System/platform crates
"rustix",
"linux-raw-sys",
"socket2",
"bitflags",
"redox_syscall",
"redox_users",

# Network crates
"yamux",
"tungstenite",
"tokio-tungstenite",

# Metrics
"metrics-util",
"metrics-exporter-prometheus",

# Other common duplicates from upstream
"base64",
"bindgen",
"cargo_metadata",
"core-foundation",
"crossterm",
"if-addrs",
"openssl-probe",
"procfs",
"procfs-core",
"security-framework",
"send_wrapper",
"toml_datetime",
"toml_edit",
"unicode-width",
"unsigned-varint",
"webpki-roots",
]
Loading