0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-03 09:31:22 -05:00

chore: upgrade deno_core to 0.247.0 (#21974)

This commit is contained in:
Bartek Iwańczuk 2024-01-18 17:57:22 +01:00 committed by GitHub
parent 66ff28c21e
commit 4e3aff8400
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 15 additions and 9 deletions

12
Cargo.lock generated
View file

@ -1150,9 +1150,9 @@ dependencies = [
[[package]]
name = "deno_core"
version = "0.246.0"
version = "0.247.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b3f3a882e1772e941a50936935e5bede7ce94a173e51a0f7403ade7961d948f"
checksum = "ff6e8ee2e08528c1da4f5a48659c67d12012e831c737f6266534d4f550ccc8c3"
dependencies = [
"anyhow",
"bit-set",
@ -1600,9 +1600,9 @@ dependencies = [
[[package]]
name = "deno_ops"
version = "0.122.0"
version = "0.123.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea3f11df272673bb7e78942a594843c38138b9c76cd69596a74a43ad4b3d1736"
checksum = "19f29c5fe78479c3fa437409dca009363feb77036c067d6f3682adff8d06f547"
dependencies = [
"proc-macro-rules",
"proc-macro2",
@ -5255,9 +5255,9 @@ dependencies = [
[[package]]
name = "serde_v8"
version = "0.155.0"
version = "0.156.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c80510f3f42dbbf749b122e38c1ce07fa1b8dd62ce2636867a0d2c416a0d63e"
checksum = "48ad52e56e21faee5d310a898ab77f83abdab737fde1e97fa6a8cd6615d139ef"
dependencies = [
"bytes",
"derive_more",

View file

@ -41,7 +41,7 @@ repository = "https://github.com/denoland/deno"
[workspace.dependencies]
deno_ast = { version = "1.0.1", features = ["transpiling"] }
deno_core = { version = "0.246.0" }
deno_core = { version = "0.247.0" }
deno_runtime = { version = "0.140.0", path = "./runtime" }
napi_sym = { version = "0.62.0", path = "./cli/napi/sym" }

View file

@ -13,10 +13,13 @@
import { core, primordials } from "ext:core/mod.js";
const {
op_fetch,
op_fetch_send,
op_wasm_streaming_feed,
op_wasm_streaming_set_url,
} = core.ensureFastOps();
// TODO(bartlomieju): this ops is also used in `ext/node/polyfills/http.ts`.
const {
op_fetch_send,
} = core.ensureFastOps(true);
const {
ArrayPrototypePush,
ArrayPrototypeSplice,

View file

@ -6,9 +6,12 @@
import { core } from "ext:core/mod.js";
const {
op_fetch_response_upgrade,
op_fetch_send,
op_node_http_request,
} = core.ensureFastOps();
// TODO(bartlomieju): this ops is also used in `ext/fetch/26_fetch.js`.
const {
op_fetch_send,
} = core.ensureFastOps(true);
import { TextEncoder } from "ext:deno_web/08_text_encoding.js";
import { setTimeout } from "ext:deno_web/02_timers.js";