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.
17 lines
302 B
Rust
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;
|