1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-24 15:19:26 -05:00

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.
This commit is contained in:
Bartek Iwańczuk 2023-05-30 03:55:38 +02:00 committed by GitHub
parent d90a75c036
commit 7f5a61c859
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

1
Cargo.lock generated
View file

@ -1152,6 +1152,7 @@ version = "0.98.0"
dependencies = [
"deno_core",
"deno_tls",
"enum-as-inner",
"log",
"pin-project",
"serde",

View file

@ -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