ladybird/Libraries/LibRegex/Rust/Cargo.toml
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

19 lines
397 B
TOML

[package]
name = "libregex_rust"
version = "0.1.0"
edition = "2024"
[lib]
crate-type = ["staticlib"]
# After changing dependencies, regenerate the Flatpak sources:
# python3 Meta/CMake/flatpak/generate-cargo-sources.py
[dependencies]
libunicode_rust = { path = "../../LibUnicode/Rust", default-features = false }
[features]
default = []
allocator = []
[build-dependencies]
cbindgen = "0.29"