Skip to content

Commit

Permalink
chore: fix failed publish caused by cyclic dev dependencies (#4416)
Browse files Browse the repository at this point in the history
1. This looks like caused by
rust-lang/cargo#4242

## Ref
1. rust-lang/futures-rs#2305
  • Loading branch information
IWANABETHATGUY authored Jul 23, 2024
1 parent c1cf0e6 commit 01f33cf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion crates/oxc_mangler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ oxc_index = { workspace = true }
itertools = { workspace = true }

[dev-dependencies]
oxc_codegen = { workspace = true }
# Using `path` instead of `workspace = true` Workaround for https://github.com/rust-lang/cargo/issues/4242
# ref: https://github.com/rust-lang/futures-rs/pull/2305
oxc_codegen = { path = "../oxc_codegen" }
oxc_parser = { workspace = true }
oxc_span = { workspace = true }
oxc_allocator = { workspace = true }
Expand Down

0 comments on commit 01f33cf

Please sign in to comment.