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

1. rust-lang/futures-rs#2305
  • Loading branch information
IWANABETHATGUY authored and DonIsaac committed Jul 24, 2024
1 parent e13e58a commit e0c04fc
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions crates/oxc_mangler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,12 @@ oxc_ast = { workspace = true }
oxc_semantic = { workspace = true }
oxc_index = { workspace = true }
itertools = { workspace = true }

[dev-dependencies]
# 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 }
insta = { workspace = true }

0 comments on commit e0c04fc

Please sign in to comment.