mirror of
https://github.com/denoland/rusty_v8.git
synced 2024-11-22 15:07:00 -05:00
chore: upgrade Rust to 1.55.0 (#770)
This commit is contained in:
parent
1b815235a8
commit
674f44449f
2 changed files with 13 additions and 7 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -70,7 +70,7 @@ jobs:
|
||||||
uses: hecrj/setup-rust-action@v1
|
uses: hecrj/setup-rust-action@v1
|
||||||
with:
|
with:
|
||||||
components: clippy, rustfmt
|
components: clippy, rustfmt
|
||||||
rust-version: 1.54.0
|
rust-version: 1.55.0
|
||||||
|
|
||||||
- name: Install python
|
- name: Install python
|
||||||
uses: actions/setup-python@v1
|
uses: actions/setup-python@v1
|
||||||
|
|
|
@ -4,7 +4,13 @@ error[E0277]: the trait bound `OwnedIsolate: rusty_v8::scope::param::NewEscapabl
|
||||||
6 | let mut _scope = v8::EscapableHandleScope::new(&mut isolate);
|
6 | let mut _scope = v8::EscapableHandleScope::new(&mut isolate);
|
||||||
| ^^^^^^^^^^^^ the trait `rusty_v8::scope::param::NewEscapableHandleScope<'_, '_>` is not implemented for `OwnedIsolate`
|
| ^^^^^^^^^^^^ the trait `rusty_v8::scope::param::NewEscapableHandleScope<'_, '_>` is not implemented for `OwnedIsolate`
|
||||||
|
|
|
|
||||||
= note: required by `EscapableHandleScope::<'s, 'e>::new`
|
note: required by `EscapableHandleScope::<'s, 'e>::new`
|
||||||
|
--> $DIR/scope.rs:303:3
|
||||||
|
|
|
||||||
|
303 | / pub fn new<P: param::NewEscapableHandleScope<'s, 'e>>(
|
||||||
|
304 | | param: &'s mut P,
|
||||||
|
305 | | ) -> P::NewScope {
|
||||||
|
| |__________________^
|
||||||
|
|
||||||
error[E0277]: the trait bound `OwnedIsolate: rusty_v8::scope::param::NewEscapableHandleScope<'_, '_>` is not satisfied
|
error[E0277]: the trait bound `OwnedIsolate: rusty_v8::scope::param::NewEscapableHandleScope<'_, '_>` is not satisfied
|
||||||
--> $DIR/handle_scope_escape_to_nowhere.rs:6:20
|
--> $DIR/handle_scope_escape_to_nowhere.rs:6:20
|
||||||
|
|
Loading…
Reference in a new issue