diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-01-25 15:36:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-25 15:36:10 +0100 |
commit | 8b7023bc7e11e0ddfd0363a803a129ed97907be5 (patch) | |
tree | e20562103e9d3a5aa3b47126bea1a773072792fe /core/runtime.rs | |
parent | e2d75491d5fc6fbac67da89c7350c4c9ca99d8e9 (diff) |
Revert "chore: upgrade rusty_v8 to 0.62.0 (#17200)" (#17523)
This reverts commit e2d75491d5fc6fbac67da89c7350c4c9ca99d8e9.
Diffstat (limited to 'core/runtime.rs')
-rw-r--r-- | core/runtime.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/runtime.rs b/core/runtime.rs index 026ee02a5..5f89fbdee 100644 --- a/core/runtime.rs +++ b/core/runtime.rs @@ -199,9 +199,9 @@ fn v8_init( ) { // Include 10MB ICU data file. #[repr(C, align(16))] - struct IcuData([u8; 10541264]); + struct IcuData([u8; 10454784]); static ICU_DATA: IcuData = IcuData(*include_bytes!("icudtl.dat")); - v8::icu::set_common_data_72(&ICU_DATA.0).unwrap(); + v8::icu::set_common_data_71(&ICU_DATA.0).unwrap(); let flags = concat!( " --wasm-test-streaming", |