summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock1
-rw-r--r--ext/net/Cargo.toml3
2 files changed, 4 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index bafae5932..86540accf 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1152,6 +1152,7 @@ version = "0.98.0"
dependencies = [
"deno_core",
"deno_tls",
+ "enum-as-inner",
"log",
"pin-project",
"serde",
diff --git a/ext/net/Cargo.toml b/ext/net/Cargo.toml
index 160f5085e..3a2729b05 100644
--- a/ext/net/Cargo.toml
+++ b/ext/net/Cargo.toml
@@ -16,6 +16,9 @@ path = "lib.rs"
[dependencies]
deno_core.workspace = true
deno_tls.workspace = true
+# Pinning to 0.5.1, because 0.5.2 breaks "cargo publish"
+# https://github.com/bluejekyll/enum-as-inner/pull/91
+enum-as-inner = "=0.5.1"
log.workspace = true
pin-project.workspace = true
serde.workspace = true