This folder contains a Proc-Macro crate for configuring the Scudo allocator with various options.

The exported set_scudo_options attribute macro allows to set Scudo options with an annotation on the main method:

```rust use scudoprocmacros::setscudooptions;

[setscudooptions(deletesizemismatch = false, releasetoosintervalms = 1)]

fn main() { // Use Scudo with the provided options. } ```

For more on Scudo options, visit the official documentation here.

Please note: the proc macro exported by this crate works both with the scudo-sys crate as well as with the idiomatic Rust binding crate, scudo.