ladybird/Libraries/LibRegex/Rust/src/lib.rs
Shannon Booth 45dd8d093f LibRegex: Hide the Unicode allocator override behind a feature
In a similar fashion to 46912fce8d.

In this case, a future commit will make LibURL depend on
LibRegex's Rust module, so we need to apply the same change here
too.
2026-05-28 09:27:41 +02:00

17 lines
302 B
Rust

/*
* Copyright (c) 2026-present, the Ladybird developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#[cfg(feature = "allocator")]
#[path = "../../../RustAllocator.rs"]
mod rust_allocator;
pub mod ast;
pub mod bytecode;
pub mod compiler;
pub mod ffi;
pub mod parser;
pub mod regex;
pub mod vm;