Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

migrate the main rustdoc handlers to axum, drop iron #1963

Merged
merged 2 commits into from
Dec 25, 2022
Merged
Show file tree
Hide file tree
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
18 changes: 0 additions & 18 deletions .cargo/audit.toml
Original file line number Diff line number Diff line change
@@ -1,34 +1,16 @@
[advisories]
ignore = [
"RUSTSEC-2020-0016", # net2 crate has been deprecated; use socket2 instead
# https://github.com/rust-lang/docs.rs/issues/760

"RUSTSEC-2020-0036", # failure is officially deprecated/unmaintained
# https://github.com/rust-lang/docs.rs/issues/1014

"RUSTSEC-2020-0056", # stdweb is unmaintained
# https://github.com/rust-lang/docs.rs/issues/1122

"RUSTSEC-2020-0071", # `time` localtime_r segfault
# https://github.com/rust-lang/docs.rs/issues/1523

"RUSTSEC-2020-0159", # `chrono` localtime_r segfault
# https://github.com/rust-lang/docs.rs/issues/1525

"RUSTSEC-2021-0078", # Lenient hyper header parsing of Content-Length could allow request smuggling
# https://github.com/rust-lang/docs.rs/issues/1460

"RUSTSEC-2021-0079", # Integer overflow in hyper's parsing of the Transfer-Encoding header leads to data loss
# https://github.com/rust-lang/docs.rs/issues/1459

"RUSTSEC-2021-0127", # serde_cbor is unmaintained
# https://github.com/rust-lang/docs.rs/issues/1568

"RUSTSEC-2021-0144", # traitobject is Unmaintained
# https://github.com/rust-lang/docs.rs/issues/1826

"RUSTSEC-2019-0039", # typemap is Unmaintained
# https://github.com/rust-lang/docs.rs/issues/1827
]
informational_warnings = ["unmaintained"] # warn for categories of informational advisories
severity_threshold = "low" # CVSS severity ("none", "low", "medium", "high", "critical")
Expand Down
Loading