rustc_sanitizers/lib.rs
1//! Sanitizers support for the Rust compiler.
2//!
3//! This crate contains the source code for providing support for the sanitizers to the Rust
4//! compiler.
5
6// tidy-alphabetical-start
7#![cfg_attr(doc, recursion_limit = "256")] // FIXME(nnethercote): will be removed by #124141
8#![feature(let_chains)]
9// tidy-alphabetical-end
10
11pub mod cfi;
12pub mod kcfi;