summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorsnek <snek@deno.com>2024-07-22 11:41:59 -0700
committerGitHub <noreply@github.com>2024-07-22 11:41:59 -0700
commit92abdb7669d81b656ae0505cf923fca3b7feea01 (patch)
tree51b69d12fc67351f979246d86fc9cfdf369dde48 /Cargo.toml
parenta459b43d59d2f8f055f3ecda30d1cf0fed2e181f (diff)
chore: move all node-api impl to ext (#24662)
these symbols are re-exported from runtime/cli using `build.rs`, so we don't need them in the same crate.
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 17262aae5..6bb37d656 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -5,7 +5,6 @@ resolver = "2"
members = [
"bench_util",
"cli",
- "cli/napi/sym",
"ext/broadcast_channel",
"ext/cache",
"ext/canvas",
@@ -19,6 +18,7 @@ members = [
"ext/io",
"ext/kv",
"ext/napi",
+ "ext/napi/sym",
"ext/net",
"ext/node",
"ext/url",
@@ -52,7 +52,7 @@ deno_media_type = { version = "0.1.4", features = ["module_specifier"] }
deno_permissions = { version = "0.21.0", path = "./runtime/permissions" }
deno_runtime = { version = "0.169.0", path = "./runtime" }
deno_terminal = "0.2.0"
-napi_sym = { version = "0.91.0", path = "./cli/napi/sym" }
+napi_sym = { version = "0.91.0", path = "./ext/napi/sym" }
test_util = { package = "test_server", path = "./tests/util/server" }
denokv_proto = "0.8.1"