mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-31 13:40:15 +03:00
1f0f2c4007
Create the rustc_sanitizers crate and move the source code for the CFI and KCFI sanitizers to it. Co-authored-by: David Wood <agile.lion3441@fuligin.ink>
8 lines
208 B
Rust
8 lines
208 B
Rust
#![feature(let_chains)]
|
|
//! Sanitizers support for the Rust compiler.
|
|
//!
|
|
//! This crate contains the source code for providing support for the sanitizers to the Rust
|
|
//! compiler.
|
|
pub mod cfi;
|
|
pub mod kcfi;
|