mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
Let's not have LibRegex be the home of LibUnicode FFI. Move these to LibUnicode so that we can: 1. Use these helpers in other libraries more easily. 2. Swap out icu4c methods with icu4x methods all within LibUnicode.
24 lines
458 B
TOML
24 lines
458 B
TOML
[package]
|
|
name = "libunicode_rust"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[features]
|
|
default = []
|
|
allocator = []
|
|
|
|
[lib]
|
|
crate-type = ["staticlib", "rlib"]
|
|
|
|
# After changing dependencies, regenerate the Flatpak sources:
|
|
# python3 Meta/CMake/flatpak/generate-cargo-sources.py
|
|
[dependencies]
|
|
calendrical_calculations = "=0.2.4"
|
|
icu_calendar = { version = "=2.2.0", features = ["compiled_data"] }
|
|
|
|
[build-dependencies]
|
|
cbindgen = "0.29"
|
|
|
|
[lints]
|
|
workspace = true
|