4 releases
0.1.3 | Oct 24, 2022 |
---|---|
0.1.2 | Nov 18, 2021 |
0.1.1 | Nov 15, 2021 |
0.1.0 | Nov 9, 2021 |
#264 in Memory management
2,126 downloads per month
Used in korten
230KB
5K
SLoC
Idiomatic Rust bindings for the Scudo Hardened Allocator.
Scudo is a user space heap allocator designed to be reistent to heap exploitation. It is useful to you if your program allocates memory and you depend on unsafe code or you want defense-in-depth against heap exploitation. In addition to security, it achieves competitive performance against jemalloc, tcmalloc and others.
To use Scudo in your crate:
$ cargo add scudo
use scudo::GlobalScudoAllocator;
#[global_allocator]
static SCUDO_ALLOCATOR: GlobalScudoAllocator = GlobalScudoAllocator;
If you want to use the unstable std::alloc::Allocator
trait, use the
allocator_api
feature.
Dependencies
~1.2–1.7MB
~41K SLoC