libdd_alloc/
lib.rs

1// Copyright 2024-Present Datadog, Inc. https://www.datadoghq.com/
2// SPDX-License-Identifier: Apache-2.0
3
4#![cfg_attr(not(test), no_std)]
5#![cfg_attr(not(test), deny(clippy::panic))]
6#![cfg_attr(not(test), deny(clippy::unwrap_used))]
7#![cfg_attr(not(test), deny(clippy::expect_used))]
8#![cfg_attr(not(test), deny(clippy::todo))]
9#![cfg_attr(not(test), deny(clippy::unimplemented))]
10
11mod chain;
12mod linear;
13mod utils;
14mod virtual_alloc;
15
16pub use chain::*;
17pub use linear::*;
18pub use virtual_alloc::*;
19
20// Expose allocator_api2 for our users.
21pub use allocator_api2::alloc::*;