-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathaudit.toml
More file actions
21 lines (21 loc) · 989 Bytes
/
Copy pathaudit.toml
File metadata and controls
21 lines (21 loc) · 989 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# cargo-audit configuration.
#
# The advisories below are all transitively pinned by soroban-sdk 20.x's
# dependency tree (soroban-env-host / soroban-env-common pin exact or
# narrow ranges for curve25519-dalek and serde) and cannot be bumped without
# a major soroban-sdk upgrade, which is out of scope while the workspace is
# pinned to Rust 1.79.0 (see rust-toolchain.toml). Re-evaluate this list
# whenever soroban-sdk is upgraded.
[advisories]
ignore = [
# curve25519-dalek: soroban-env-host 20.3.0 pins
# ">=4.1.1, <=4.1.2", which excludes the 4.1.3 fix.
"RUSTSEC-2024-0344",
# idna: pulled in via `url` (through `ureq`), itself held back for the
# 1.79.0 MSRV; upgrading to idna >=1.0 requires a newer `url` major.
"RUSTSEC-2024-0421",
# time: pulled in via serde_with -> soroban-ledger-snapshot; the fixed
# 0.3.47 needs a serde_core/serde_derive newer than the
# `serde = "=1.0.192"` soroban-env-common pins exactly.
"RUSTSEC-2026-0009",
]