chore: upgrade deno_core to 0.244.0 (#21859)

This commit is contained in:
Bartek Iwańczuk 2024-01-09 17:25:10 +01:00 committed by GitHub
parent 6db631a432
commit cd43d2b877
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 17 additions and 17 deletions

20
Cargo.lock generated
View file

@ -1158,9 +1158,9 @@ dependencies = [
[[package]]
name = "deno_core"
version = "0.243.0"
version = "0.244.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cadc994e8ecacc8b44a60bd26e510a9913d69ff9aa2fca39f9c0378084ba722d"
checksum = "7c18f86123119dffd1f2f016ff5b858b878971c042a18493794b219a33a69dda"
dependencies = [
"anyhow",
"bit-set",
@ -1168,7 +1168,7 @@ dependencies = [
"bytes",
"cooked-waker",
"deno_ops",
"deno_unsync 0.3.1",
"deno_unsync 0.3.2",
"futures",
"libc",
"log",
@ -1600,9 +1600,9 @@ dependencies = [
[[package]]
name = "deno_ops"
version = "0.119.0"
version = "0.120.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3ac6a58c4aef86af8a55751cb157c703cd9f21f209026515412e0912ca9c2e4c"
checksum = "ed8f888f466c80fdec64d0ec2fb12b0f56b0f1ae4815bb20a1895cc7097fb775"
dependencies = [
"proc-macro-rules",
"proc-macro2",
@ -1729,9 +1729,9 @@ dependencies = [
[[package]]
name = "deno_unsync"
version = "0.3.1"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e902f81b6d372427a99b65372379568e6350735562f3237c3daf61086e1d6e6"
checksum = "30dff7e03584dbae188dae96a0f1876740054809b2ad0cf7c9fc5d361f20e739"
dependencies = [
"tokio",
]
@ -5299,9 +5299,9 @@ dependencies = [
[[package]]
name = "serde_v8"
version = "0.152.0"
version = "0.153.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "016d49be02ecb10655486c7e0a3fe2fe9345bc4c7f3cf5c66671ff327115eabe"
checksum = "0a53364678111a47806ca93b8485acd66a4a2d37da733564dcc3e76a91531ba6"
dependencies = [
"bytes",
"derive_more",
@ -6144,7 +6144,7 @@ dependencies = [
"base64 0.21.5",
"bytes",
"console_static_text",
"deno_unsync 0.3.1",
"deno_unsync 0.3.2",
"denokv_proto",
"fastwebsockets",
"flate2",

View file

@ -41,7 +41,7 @@ repository = "https://github.com/denoland/deno"
[workspace.dependencies]
deno_ast = { version = "0.31.6", features = ["transpiling"] }
deno_core = { version = "0.243.0" }
deno_core = { version = "0.244.0" }
deno_runtime = { version = "0.138.0", path = "./runtime" }
napi_sym = { version = "0.60.0", path = "./cli/napi/sym" }

View file

@ -44,7 +44,7 @@ where
Ok(a == b)
}
#[op2(fast)]
#[op2]
pub fn op_ffi_ptr_of<FP>(
state: &mut OpState,
#[anybuffer] buf: *const u8,
@ -172,7 +172,7 @@ where
Ok(array_buffer)
}
#[op2(fast)]
#[op2]
pub fn op_ffi_buf_copy_into<FP>(
state: &mut OpState,
src: *mut c_void,

View file

@ -769,7 +769,7 @@ pub fn op_http_set_response_body_text(
}
}
#[op2(fast)]
#[op2]
pub fn op_http_set_response_body_bytes(
external: *const c_void,
#[buffer] buffer: JsBuffer,

View file

@ -55,7 +55,7 @@ pub fn op_node_check_prime(
primes::is_probably_prime(&BigInt::from(num), checks)
}
#[op2(fast)]
#[op2]
pub fn op_node_check_prime_bytes(
#[anybuffer] bytes: &[u8],
#[number] checks: usize,

View file

@ -518,7 +518,7 @@ pub fn op_readable_stream_resource_write_buf(
/// Write to the channel synchronously, returning 0 if the channel was closed, 1 if we wrote
/// successfully, 2 if the channel was full and we need to block.
#[op2(fast)]
#[op2]
pub fn op_readable_stream_resource_write_sync(
sender: *const c_void,
#[buffer] buffer: JsBuffer,

View file

@ -562,7 +562,7 @@ fn send_binary(state: &mut OpState, rid: ResourceId, data: &[u8]) {
});
}
#[op2(fast)]
#[op2]
pub fn op_ws_send_binary(
state: &mut OpState,
#[smi] rid: ResourceId,