diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-01-25 13:22:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-25 12:22:27 +0000 |
commit | e2d75491d5fc6fbac67da89c7350c4c9ca99d8e9 (patch) | |
tree | 5efc18dbe80576cd184a2893baab30011d8d63d2 /core/runtime.rs | |
parent | f3711f28f4b5ddfd9a11d9952b0a33b75fc5bc9c (diff) |
chore: upgrade rusty_v8 to 0.62.0 (#17200)
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 5f89fbdee..026ee02a5 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; 10454784]); + struct IcuData([u8; 10541264]); static ICU_DATA: IcuData = IcuData(*include_bytes!("icudtl.dat")); - v8::icu::set_common_data_71(&ICU_DATA.0).unwrap(); + v8::icu::set_common_data_72(&ICU_DATA.0).unwrap(); let flags = concat!( " --wasm-test-streaming", |