mirror of
https://github.com/denoland/rusty_v8.git
synced 2024-11-21 20:28:58 +00:00
chore: upgrade to rust 1.80 (#1553)
This commit is contained in:
parent
65bee4d15e
commit
93d18d3eb8
@ -1,5 +1,5 @@
|
|||||||
[toolchain]
|
[toolchain]
|
||||||
channel = "1.79.0"
|
channel = "1.80.0"
|
||||||
components = ["rustfmt", "clippy"]
|
components = ["rustfmt", "clippy"]
|
||||||
targets = [
|
targets = [
|
||||||
"x86_64-apple-darwin",
|
"x86_64-apple-darwin",
|
||||||
|
@ -235,6 +235,8 @@ pub struct FastApiTypedArray<T: Default> {
|
|||||||
data: *mut T,
|
data: *mut T,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// FastApiOneByteString is an alias for SeqOneByteString and the type is widely used in deno_core.
|
||||||
|
#[allow(dead_code)]
|
||||||
#[repr(C)]
|
#[repr(C)]
|
||||||
pub struct FastApiOneByteString {
|
pub struct FastApiOneByteString {
|
||||||
data: *const u8,
|
data: *const u8,
|
||||||
|
@ -5202,6 +5202,7 @@ fn equality_edge_cases() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
#[allow(clippy::mutable_key_type)]
|
||||||
fn get_hash() {
|
fn get_hash() {
|
||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
use std::collections::HashSet;
|
use std::collections::HashSet;
|
||||||
|
Loading…
Reference in New Issue
Block a user