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