mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
13 lines
288 B
Rust
13 lines
288 B
Rust
//! 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
|
|
#![feature(let_chains)]
|
|
#![warn(unreachable_pub)]
|
|
// tidy-alphabetical-end
|
|
|
|
pub mod cfi;
|
|
pub mod kcfi;
|