Skip to content

Commit 2681e7e

Browse files
authored
Revert "feat: add v2.2.0 node:sqlite support (#557)" (#559)
This reverts commit 35e30e2.
1 parent 35e30e2 commit 2681e7e

File tree

11 files changed

+6
-629
lines changed

11 files changed

+6
-629
lines changed

Cargo.lock

Lines changed: 5 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,6 @@ regex = "^1.7.0"
155155
reqwest = { version = "0.12.5", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli", "socks", "json", "http2"] } # pinned because of https://github.com/seanmonstar/reqwest/pull/1955
156156
reqwest_v011 = { package = "reqwest", version = "0.11", features = ["stream", "json", "multipart"] }
157157
ring = "^0.17.14"
158-
rusqlite = { version = "0.32.0", features = ["unlock_notify", "bundled"] }
159158
rustls = { version = "0.23.11", default-features = false, features = ["logging", "std", "tls12", "ring"] }
160159
rustls-pemfile = "2"
161160
rustls-tokio-stream = "=0.3.0"

ext/node/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ rand.workspace = true
5353
regex.workspace = true
5454
ring.workspace = true
5555
rsa.workspace = true
56-
rusqlite.workspace = true
5756
sec1.workspace = true
5857
serde.workspace = true
5958
sha1.workspace = true
@@ -82,7 +81,6 @@ home = "0.5.9"
8281
idna = "1.0.3"
8382
ipnetwork = "0.20.0"
8483
k256 = "0.13.1"
85-
libsqlite3-sys = "0.30.1"
8684
md-5 = { version = "0.10.5", features = ["oid"] }
8785
md4 = "0.10.2"
8886
memchr = "2.7.4"

ext/node/lib.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -431,9 +431,7 @@ deno_core::extension!(deno_node,
431431
ops::inspector::op_inspector_enabled,
432432
],
433433
objects = [
434-
ops::perf_hooks::EldHistogram,
435-
ops::sqlite::DatabaseSync,
436-
ops::sqlite::StatementSync
434+
ops::perf_hooks::EldHistogram
437435
],
438436
esm_entry_point = "ext:deno_node/02_init.js",
439437
esm = [
@@ -657,7 +655,6 @@ deno_core::extension!(deno_node,
657655
"node:readline" = "readline.ts",
658656
"node:readline/promises" = "readline/promises.ts",
659657
"node:repl" = "repl.ts",
660-
"node:sqlite" = "sqlite.ts",
661658
"node:stream" = "stream.ts",
662659
"node:stream/consumers" = "stream/consumers.mjs",
663660
"node:stream/promises" = "stream/promises.mjs",

ext/node/ops/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ pub mod os;
1313
pub mod perf_hooks;
1414
pub mod process;
1515
pub mod require;
16-
pub mod sqlite;
1716
pub mod tls;
1817
pub mod util;
1918
pub mod v8;

ext/node/ops/sqlite/database.rs

Lines changed: 0 additions & 199 deletions
This file was deleted.

ext/node/ops/sqlite/mod.rs

Lines changed: 0 additions & 41 deletions
This file was deleted.

0 commit comments

Comments
 (0)