diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-02-07 13:36:41 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-07 13:36:41 +0100 |
| commit | 65500f36e870b4ada3996b06aa287e30177d21a3 (patch) | |
| tree | 9e17fd939e682d985804f727d604d07ecb1e80d1 /core/runtime.rs | |
| parent | a4988d00dad8b5e665cd1f38826674d1317e8cf9 (diff) | |
chore: upgrade rusty_v8 to 0.62.2 (#17604)
Co-authored-by: Bert Belder <bertbelder@gmail.com>
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 1bda16f3e..1418e5791 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", |
