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:
parent
d90a75c036
commit
7f5a61c859
2 changed files with 4 additions and 0 deletions
1
Cargo.lock
generated
1
Cargo.lock
generated
|
@ -1152,6 +1152,7 @@ version = "0.98.0"
|
|||
dependencies = [
|
||||
"deno_core",
|
||||
"deno_tls",
|
||||
"enum-as-inner",
|
||||
"log",
|
||||
"pin-project",
|
||||
"serde",
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue