diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-05-26 13:13:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-26 13:13:01 +0200 |
commit | 3aa6d5d8b0911e9c5fcd38dd856f419692b28085 (patch) | |
tree | 90db8a578b7a7ba97c74cbd475b281fecb551ff3 /core/runtime.rs | |
parent | b4fabedd794f1a89bb78a5bd7d582e1dc59af905 (diff) |
chore: upgrade rusty_v8 to 0.43.1 (#14713)
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 476267a94..cf7980fb4 100644 --- a/core/runtime.rs +++ b/core/runtime.rs @@ -210,9 +210,9 @@ fn v8_init( ) { // Include 10MB ICU data file. #[repr(C, align(16))] - struct IcuData([u8; 10284336]); + struct IcuData([u8; 10454784]); static ICU_DATA: IcuData = IcuData(*include_bytes!("icudtl.dat")); - v8::icu::set_common_data_70(&ICU_DATA.0).unwrap(); + v8::icu::set_common_data_71(&ICU_DATA.0).unwrap(); let v8_platform = v8_platform .unwrap_or_else(|| v8::new_default_platform(0, false).make_shared()); |