mirror of
https://github.com/denoland/rusty_v8.git
synced 2024-12-25 00:29:14 -05:00
deps: upgrade V8 to 11.0.226.2 (#1160)
This commit is contained in:
parent
b295e4146a
commit
42dd5390ca
3 changed files with 5 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
# Rusty V8 Binding
|
# Rusty V8 Binding
|
||||||
|
|
||||||
V8 Version: 10.9.194.4
|
V8 Version: 11.0.226.2
|
||||||
|
|
||||||
[![ci](https://github.com/denoland/rusty_v8/workflows/ci/badge.svg?branch=main)](https://github.com/denoland/rusty_v8/actions)
|
[![ci](https://github.com/denoland/rusty_v8/workflows/ci/badge.svg?branch=main)](https://github.com/denoland/rusty_v8/actions)
|
||||||
[![crates](https://img.shields.io/crates/v/v8.svg)](https://crates.io/crates/v8)
|
[![crates](https://img.shields.io/crates/v/v8.svg)](https://crates.io/crates/v8)
|
||||||
|
|
|
@ -90,6 +90,7 @@ pub enum CType {
|
||||||
Uint64,
|
Uint64,
|
||||||
Float32,
|
Float32,
|
||||||
Float64,
|
Float64,
|
||||||
|
Pointer,
|
||||||
V8Value,
|
V8Value,
|
||||||
SeqOneByteString,
|
SeqOneByteString,
|
||||||
// https://github.com/v8/v8/blob/492a32943bc34a527f42df2ae15a77154b16cc84/include/v8-fast-api-calls.h#L264-L267
|
// https://github.com/v8/v8/blob/492a32943bc34a527f42df2ae15a77154b16cc84/include/v8-fast-api-calls.h#L264-L267
|
||||||
|
@ -110,6 +111,7 @@ pub enum Type {
|
||||||
Uint64,
|
Uint64,
|
||||||
Float32,
|
Float32,
|
||||||
Float64,
|
Float64,
|
||||||
|
Pointer,
|
||||||
V8Value,
|
V8Value,
|
||||||
SeqOneByteString,
|
SeqOneByteString,
|
||||||
CallbackOptions,
|
CallbackOptions,
|
||||||
|
@ -129,6 +131,7 @@ impl From<&Type> for CType {
|
||||||
Type::Uint64 => CType::Uint64,
|
Type::Uint64 => CType::Uint64,
|
||||||
Type::Float32 => CType::Float32,
|
Type::Float32 => CType::Float32,
|
||||||
Type::Float64 => CType::Float64,
|
Type::Float64 => CType::Float64,
|
||||||
|
Type::Pointer => CType::Pointer,
|
||||||
Type::V8Value => CType::V8Value,
|
Type::V8Value => CType::V8Value,
|
||||||
Type::SeqOneByteString => CType::SeqOneByteString,
|
Type::SeqOneByteString => CType::SeqOneByteString,
|
||||||
Type::CallbackOptions => CType::CallbackOptions,
|
Type::CallbackOptions => CType::CallbackOptions,
|
||||||
|
|
2
v8
2
v8
|
@ -1 +1 @@
|
||||||
Subproject commit 05fb6e97fc6c5fdd2e79e4f9a51c5bf0ca0ef991
|
Subproject commit 531c89529e0994b432bd67f5e78c31f6ec5ab15b
|
Loading…
Reference in a new issue