diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-05-30 03:55:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-30 01:55:38 +0000 |
commit | 7f5a61c859323287c4f2555670146630da234fbd (patch) | |
tree | 66bcbe09d979be9703c4414ab4abbc6f6a987280 | |
parent | d90a75c0361e2d2bf45d6605cb0c7cb6d1a335a7 (diff) |
pin enum-as-inner dependency (#19311)
Ref https://github.com/bluejekyll/enum-as-inner/issues/98
Had to pin it during the release to publish crates.
-rw-r--r-- | Cargo.lock | 1 | ||||
-rw-r--r-- | ext/net/Cargo.toml | 3 |
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 |