├── src ├── icudtl.dat └── lib.rs ├── README.md ├── Cargo.lock ├── .gitignore └── Cargo.toml /src/icudtl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_core_icudata/main/src/icudtl.dat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ICU Data for `deno_core` 2 | 3 | You can find the data file in Rusty V8's `third_party/icu/common/icudtl.dat` 4 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- 1 | # This file is automatically @generated by Cargo. 2 | # It is not intended for manual editing. 3 | version = 4 4 | 5 | [[package]] 6 | name = "deno_core_icudata" 7 | version = "0.77.0" 8 | -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- 1 | #[repr(C, align(16))] 2 | struct IcuData(T); 3 | 4 | static ICU_DATA_RAW: &'static IcuData<[u8]> = &IcuData(*include_bytes!("icudtl.dat")); 5 | 6 | /// Raw ICU data. 7 | pub static ICU_DATA: &[u8] = &ICU_DATA_RAW.0; 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | 3 | 4 | # Added by cargo 5 | # 6 | # already existing elements were commented out 7 | 8 | #/target 9 | 10 | 11 | # Added by cargo 12 | # 13 | # already existing elements were commented out 14 | 15 | #/target 16 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- 1 | 2 | [package] 3 | authors = ["the Deno authors"] 4 | name = "deno_core_icudata" 5 | edition = "2021" 6 | license = "MIT" 7 | repository = "https://github.com/denoland/deno_core_icudata" 8 | version = "0.77.0" 9 | description = "Raw ICU data for use with deno_core" 10 | --------------------------------------------------------------------------------