mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-07 19:59:23 +00:00
The `cargo doc` build started to fail with the rolling of `doc_auto_cfg` into `doc_cfg`, so now we don't build docs for deps (as we can't reasonably update `generic-array` at this time). `home` has been patched as we are able to, not as a direct requirement of this PR.
117 lines
3.4 KiB
TOML
117 lines
3.4 KiB
TOML
[advisories]
|
|
version = 2
|
|
|
|
db-path = "~/.cargo/advisory-db"
|
|
db-urls = ["https://github.com/rustsec/advisory-db"]
|
|
|
|
yanked = "deny"
|
|
|
|
ignore = [
|
|
"RUSTSEC-2022-0061", # https://github.com/serai-dex/serai/227
|
|
"RUSTSEC-2024-0370", # proc-macro-error is unmaintained
|
|
"RUSTSEC-2024-0436", # paste is unmaintained
|
|
"RUSTSEC-2024-0384", # instant is unmaintained, fixed on `next`
|
|
"RUSTSEC-2025-0057", # fxhash is unmaintained, fixed with bytecodealliance/wasmtime/pull/11634
|
|
]
|
|
|
|
[licenses]
|
|
version = 2
|
|
|
|
allow = [
|
|
# Effective public domain
|
|
"CC0-1.0",
|
|
"Unlicense",
|
|
|
|
# Attribution required
|
|
"MIT",
|
|
"MITNFA",
|
|
"BSD-2-Clause",
|
|
"BSD-3-Clause",
|
|
"ISC",
|
|
"Zlib",
|
|
"Unicode-3.0",
|
|
"CDLA-Permissive-2.0",
|
|
|
|
# Non-invasive copyleft
|
|
# "MPL-2.0", # Commented as it's not currently in-use within the Serai tree
|
|
"Apache-2.0",
|
|
"Apache-2.0 WITH LLVM-exception",
|
|
"GPL-3.0-or-later WITH Classpath-exception-2.0",
|
|
]
|
|
|
|
exceptions = [
|
|
{ allow = ["AGPL-3.0-only"], name = "serai-env" },
|
|
|
|
{ allow = ["AGPL-3.0-only"], name = "ethereum-serai" },
|
|
{ allow = ["AGPL-3.0-only"], name = "serai-ethereum-relayer" },
|
|
|
|
{ allow = ["AGPL-3.0-only"], name = "serai-message-queue" },
|
|
|
|
{ allow = ["AGPL-3.0-only"], name = "serai-processor-messages" },
|
|
{ allow = ["AGPL-3.0-only"], name = "serai-processor" },
|
|
|
|
{ allow = ["AGPL-3.0-only"], name = "tributary-chain" },
|
|
{ allow = ["AGPL-3.0-only"], name = "serai-coordinator" },
|
|
|
|
{ allow = ["AGPL-3.0-only"], name = "pallet-session" },
|
|
|
|
{ allow = ["AGPL-3.0-only"], name = "serai-coins-pallet" },
|
|
{ allow = ["AGPL-3.0-only"], name = "serai-dex-pallet" },
|
|
|
|
{ allow = ["AGPL-3.0-only"], name = "serai-genesis-liquidity-pallet" },
|
|
{ allow = ["AGPL-3.0-only"], name = "serai-emissions-pallet" },
|
|
|
|
{ allow = ["AGPL-3.0-only"], name = "serai-economic-security-pallet" },
|
|
|
|
{ allow = ["AGPL-3.0-only"], name = "serai-in-instructions-pallet" },
|
|
|
|
{ allow = ["AGPL-3.0-only"], name = "serai-validator-sets-pallet" },
|
|
|
|
{ allow = ["AGPL-3.0-only"], name = "serai-signals-pallet" },
|
|
|
|
{ allow = ["AGPL-3.0-only"], name = "serai-runtime" },
|
|
{ allow = ["AGPL-3.0-only"], name = "serai-node" },
|
|
|
|
{ allow = ["AGPL-3.0-only"], name = "serai-orchestrator" },
|
|
|
|
{ allow = ["AGPL-3.0-only"], name = "mini-serai" },
|
|
|
|
{ allow = ["AGPL-3.0-only"], name = "serai-docker-tests" },
|
|
{ allow = ["AGPL-3.0-only"], name = "serai-message-queue-tests" },
|
|
{ allow = ["AGPL-3.0-only"], name = "serai-processor-tests" },
|
|
{ allow = ["AGPL-3.0-only"], name = "serai-coordinator-tests" },
|
|
{ allow = ["AGPL-3.0-only"], name = "serai-full-stack-tests" },
|
|
{ allow = ["AGPL-3.0-only"], name = "serai-reproducible-runtime-tests" },
|
|
]
|
|
|
|
[[licenses.clarify]]
|
|
name = "ring"
|
|
version = "*"
|
|
expression = "MIT AND ISC AND OpenSSL"
|
|
license-files = [
|
|
{ path = "LICENSE", hash = 0xbd0eed23 }
|
|
]
|
|
|
|
[bans]
|
|
multiple-versions = "warn"
|
|
wildcards = "warn"
|
|
highlight = "all"
|
|
deny = [
|
|
{ name = "serde_derive", version = ">=1.0.172, <1.0.185" },
|
|
{ name = "hashbrown", version = "=0.15.0" },
|
|
# Legacy which _no one_ should use anymore
|
|
{ name = "is-terminal", version = "*" },
|
|
# Stop introduction into the tree without realizing it
|
|
{ name = "once_cell_polyfill", version = "*" },
|
|
]
|
|
|
|
[sources]
|
|
unknown-registry = "deny"
|
|
unknown-git = "deny"
|
|
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
|
|
allow-git = [
|
|
"https://github.com/rust-lang-nursery/lazy-static.rs",
|
|
"https://github.com/monero-oxide/monero-oxide",
|
|
"https://github.com/serai-dex/patch-polkadot-sdk",
|
|
]
|