diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2022-03-11 19:59:01 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-11 19:59:01 +0530 |
commit | 189e2f617ea0f4304bb44bb6243e0378ca55b8b5 (patch) | |
tree | df076c3137d0dc712818c7f6f3e15073b024a3d7 /core/runtime.rs | |
parent | 6ecadf63982ef61b57f73faefdd942dc41f84ee6 (diff) |
chore: update rusty_v8 to 0.41.0 (#13909)
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 42b66e13f..7555bc301 100644 --- a/core/runtime.rs +++ b/core/runtime.rs @@ -196,9 +196,9 @@ impl Drop for JsRuntime { fn v8_init(v8_platform: Option<v8::SharedRef<v8::Platform>>) { // Include 10MB ICU data file. #[repr(C, align(16))] - struct IcuData([u8; 10144432]); + struct IcuData([u8; 10284336]); static ICU_DATA: IcuData = IcuData(*include_bytes!("icudtl.dat")); - v8::icu::set_common_data_69(&ICU_DATA.0).unwrap(); + v8::icu::set_common_data_70(&ICU_DATA.0).unwrap(); let v8_platform = v8_platform .unwrap_or_else(|| v8::new_default_platform(0, false).make_shared()); |