diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-01-09 17:25:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-09 17:25:10 +0100 |
commit | cd43d2b8771e59bb454c20b1504ad4176d195e87 (patch) | |
tree | a7cd787e1033864a7e9f55b777e58c0dfec18c16 | |
parent | 6db631a432ee916380b62770357adb46edd7c281 (diff) |
chore: upgrade deno_core to 0.244.0 (#21859)
-rw-r--r-- | Cargo.lock | 20 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | ext/ffi/repr.rs | 4 | ||||
-rw-r--r-- | ext/http/http_next.rs | 2 | ||||
-rw-r--r-- | ext/node/ops/crypto/mod.rs | 2 | ||||
-rw-r--r-- | ext/web/stream_resource.rs | 2 | ||||
-rw-r--r-- | ext/websocket/lib.rs | 2 |
7 files changed, 17 insertions, 17 deletions
diff --git a/Cargo.lock b/Cargo.lock index fabd5ff62..d6575584e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/Cargo.toml b/Cargo.toml index 5d388196b..fa2622ef7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" } diff --git a/ext/ffi/repr.rs b/ext/ffi/repr.rs index 9208861cb..d6acc8ad2 100644 --- a/ext/ffi/repr.rs +++ b/ext/ffi/repr.rs @@ -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, diff --git a/ext/http/http_next.rs b/ext/http/http_next.rs index aae216172..a58c5f09a 100644 --- a/ext/http/http_next.rs +++ b/ext/http/http_next.rs @@ -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, diff --git a/ext/node/ops/crypto/mod.rs b/ext/node/ops/crypto/mod.rs index 486c34147..f73d96580 100644 --- a/ext/node/ops/crypto/mod.rs +++ b/ext/node/ops/crypto/mod.rs @@ -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, diff --git a/ext/web/stream_resource.rs b/ext/web/stream_resource.rs index 95525cdf4..9a46b6d47 100644 --- a/ext/web/stream_resource.rs +++ b/ext/web/stream_resource.rs @@ -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, diff --git a/ext/websocket/lib.rs b/ext/websocket/lib.rs index da4589682..4b544b4f8 100644 --- a/ext/websocket/lib.rs +++ b/ext/websocket/lib.rs @@ -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, |