0
0
Fork 0
mirror of https://github.com/denoland/rusty_v8.git synced 2024-11-23 15:17:01 -05:00

chore: upgrade to rust 1.80 (#1553)

This commit is contained in:
Satya Rohith 2024-07-30 11:33:27 +05:30 committed by GitHub
parent 65bee4d15e
commit 93d18d3eb8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,5 @@
[toolchain]
channel = "1.79.0"
channel = "1.80.0"
components = ["rustfmt", "clippy"]
targets = [
"x86_64-apple-darwin",

View file

@ -235,6 +235,8 @@ pub struct FastApiTypedArray<T: Default> {
data: *mut T,
}
// FastApiOneByteString is an alias for SeqOneByteString and the type is widely used in deno_core.
#[allow(dead_code)]
#[repr(C)]
pub struct FastApiOneByteString {
data: *const u8,

View file

@ -5202,6 +5202,7 @@ fn equality_edge_cases() {
}
#[test]
#[allow(clippy::mutable_key_type)]
fn get_hash() {
use std::collections::HashMap;
use std::collections::HashSet;