Skip to content

Commit b59186c

Browse files
committed
add unicode-script conversion
1 parent 8d06c0e commit b59186c

File tree

4 files changed

+405
-0
lines changed

4 files changed

+405
-0
lines changed

Cargo.lock

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,7 @@ smallvec = { version = "1.10.0", default-features = false }
262262
stable_deref_trait = { version = "1.2.0", default-features = false }
263263
twox-hash = { version = "2.0.0", default-features = false, features = ["xxhash64"] }
264264
unicode-bidi = { version = "0.3.11", default-features = false }
265+
unicode-script = { version = "0.5.8", default-features = false }
265266
utf16_iter = { version = "1.0.2", default-features = false }
266267
utf8_iter = { version = "1.0.2", default-features = false }
267268
write16 = { version = "1.0.0", default-features = false }

components/properties/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ icu_locale_core = { workspace = true, features = ["zerovec"] }
3030

3131
harfbuzz-traits = { workspace = true, optional = true }
3232
unicode-bidi = { workspace = true, optional = true }
33+
unicode-script = { workspace = true, optional = true }
3334

3435
icu_properties_data = { workspace = true, optional = true }
3536

@@ -42,6 +43,7 @@ serde = ["dep:serde", "icu_locale_core/serde", "zerovec/serde", "icu_collections
4243
datagen = ["serde", "dep:databake", "zerovec/databake", "icu_collections/databake", "icu_locale_core/databake", "zerotrie/databake", "icu_provider/export"]
4344
unicode_bidi = ["dep:unicode-bidi"]
4445
harfbuzz_traits = ["dep:harfbuzz-traits"]
46+
unicode_script = ["dep:unicode-script"]
4547
compiled_data = ["dep:icu_properties_data", "icu_provider/baked"]
4648
alloc = ["zerovec/alloc", "icu_collections/alloc", "serde?/alloc"]
4749

0 commit comments

Comments
 (0)