mirror of
https://github.com/chatmail/core.git
synced 2026-04-02 05:22:14 +03:00
It is an "unsound" advisory for a transitive dependency and cargo-deny does not report them by default since cargo-deny 0.19.0.
96 lines
3.0 KiB
TOML
96 lines
3.0 KiB
TOML
[advisories]
|
|
ignore = [
|
|
# Timing attack on RSA.
|
|
# Delta Chat does not use RSA for new keys
|
|
# and this requires precise measurement of the decryption time by the attacker.
|
|
# There is no fix at the time of writing this (2023-11-28).
|
|
# <https://rustsec.org/advisories/RUSTSEC-2023-0071>
|
|
"RUSTSEC-2023-0071",
|
|
|
|
# Unmaintained instant
|
|
"RUSTSEC-2024-0384",
|
|
|
|
# Unmaintained paste
|
|
"RUSTSEC-2024-0436",
|
|
|
|
# Unmaintained rustls-pemfile
|
|
# It is a transitive dependency of iroh 0.35.0,
|
|
# this should be fixed by upgrading to iroh 1.0 once it is released.
|
|
"RUSTSEC-2025-0134",
|
|
]
|
|
|
|
[bans]
|
|
# Accept some duplicate versions, ideally we work towards this list
|
|
# becoming empty. Adding versions forces us to revisit this at least
|
|
# when upgrading.
|
|
# Please keep this list alphabetically sorted.
|
|
skip = [
|
|
{ name = "async-channel", version = "1.9.0" },
|
|
{ name = "bitflags", version = "1.3.2" },
|
|
{ name = "derive_more-impl", version = "1.0.0" },
|
|
{ name = "derive_more", version = "1.0.0" },
|
|
{ name = "event-listener", version = "2.5.3" },
|
|
{ name = "getrandom", version = "0.2.12" },
|
|
{ name = "heck", version = "0.4.1" },
|
|
{ name = "http", version = "0.2.12" },
|
|
{ name = "linux-raw-sys", version = "0.4.14" },
|
|
{ name = "lru", version = "0.12.5" },
|
|
{ name = "netlink-packet-route", version = "0.17.1" },
|
|
{ name = "nom", version = "7.1.3" },
|
|
{ name = "rand_chacha", version = "0.3.1" },
|
|
{ name = "rand_core", version = "0.6.4" },
|
|
{ name = "rand", version = "0.8.5" },
|
|
{ name = "rustix", version = "0.38.44" },
|
|
{ name = "serdect", version = "0.2.0" },
|
|
{ name = "socket2", version = "0.5.9" },
|
|
{ name = "spin", version = "0.9.8" },
|
|
{ name = "strum_macros", version = "0.26.2" },
|
|
{ name = "strum", version = "0.26.2" },
|
|
{ name = "syn", version = "1.0.109" },
|
|
{ name = "thiserror-impl", version = "1.0.69" },
|
|
{ name = "thiserror", version = "1.0.69" },
|
|
{ name = "toml_datetime", version = "0.6.11" },
|
|
{ name = "wasi", version = "0.11.0+wasi-snapshot-preview1" },
|
|
{ name = "windows" },
|
|
{ name = "windows_aarch64_gnullvm" },
|
|
{ name = "windows_aarch64_msvc" },
|
|
{ name = "windows-core" },
|
|
{ name = "windows_i686_gnu" },
|
|
{ name = "windows_i686_gnullvm" },
|
|
{ name = "windows_i686_msvc" },
|
|
{ name = "windows-implement" },
|
|
{ name = "windows-interface" },
|
|
{ name = "windows-result" },
|
|
{ name = "windows-strings" },
|
|
{ name = "windows-sys" },
|
|
{ name = "windows-targets" },
|
|
{ name = "windows_x86_64_gnu" },
|
|
{ name = "windows_x86_64_gnullvm" },
|
|
{ name = "windows_x86_64_msvc" },
|
|
]
|
|
|
|
|
|
[licenses]
|
|
allow = [
|
|
"0BSD",
|
|
"Apache-2.0",
|
|
"BSD-2-Clause",
|
|
"BSD-3-Clause",
|
|
"BSL-1.0", # Boost Software License 1.0
|
|
"CC0-1.0",
|
|
"ISC",
|
|
"MIT",
|
|
"MPL-2.0",
|
|
"Unicode-3.0",
|
|
"Unicode-DFS-2016",
|
|
"Unlicense",
|
|
"Zlib",
|
|
]
|
|
|
|
[[licenses.clarify]]
|
|
name = "ring"
|
|
expression = "MIT AND ISC AND OpenSSL"
|
|
license-files = [
|
|
{ path = "LICENSE", hash = 0xbd0eed23 },
|
|
]
|