Skip to content

Commit e0c04fc

Browse files
IWANABETHATGUYDonIsaac
authored andcommitted
chore: fix failed publish caused by cyclic dev dependencies (#4416)
1. This looks like caused by rust-lang/cargo#4242 1. rust-lang/futures-rs#2305
1 parent e13e58a commit e0c04fc

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

Cargo.lock

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/oxc_mangler/Cargo.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,12 @@ oxc_ast = { workspace = true }
2626
oxc_semantic = { workspace = true }
2727
oxc_index = { workspace = true }
2828
itertools = { workspace = true }
29+
30+
[dev-dependencies]
31+
# Using `path` instead of `workspace = true` Workaround for https://github.com/rust-lang/cargo/issues/4242
32+
# ref: https://github.com/rust-lang/futures-rs/pull/2305
33+
oxc_codegen = { path = "../oxc_codegen" }
34+
oxc_parser = { workspace = true }
35+
oxc_span = { workspace = true }
36+
oxc_allocator = { workspace = true }
37+
insta = { workspace = true }

0 commit comments

Comments
 (0)