Skip to content

Commit

Permalink
chore(semantic, wasm): re-order dependencies in Cargo.toml files (#…
Browse files Browse the repository at this point in the history
…6657)

Nit. Move `serde` dependency into more natural place in the list.
  • Loading branch information
overlookmotel committed Oct 18, 2024
1 parent e340424 commit 683c344
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/oxc_semantic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ indexmap = { workspace = true }
itertools = { workspace = true }
phf = { workspace = true, features = ["macros"] }
rustc-hash = { workspace = true }
serde = { workspace = true, features = ["derive"], optional = true }

serde = { workspace = true, features = ["derive"], optional = true }
tsify = { workspace = true, optional = true }
wasm-bindgen = { workspace = true, optional = true }

Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ oxc = { workspace = true, features = ["codegen", "minifier", "semantic", "serial
oxc_index = { workspace = true }
oxc_linter = { workspace = true }
oxc_prettier = { workspace = true }
serde = { workspace = true }

console_error_panic_hook = { workspace = true }
serde = { workspace = true }
serde-wasm-bindgen = { workspace = true }
tsify = { workspace = true }
wasm-bindgen = { workspace = true }
2 changes: 1 addition & 1 deletion wasm/parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ doctest = false

[dependencies]
oxc = { workspace = true, features = ["serialize"] }
serde = { workspace = true, features = ["derive"] }

serde = { workspace = true, features = ["derive"] }
serde-wasm-bindgen = { workspace = true }
tsify = { workspace = true }
wasm-bindgen = { workspace = true }

0 comments on commit 683c344

Please sign in to comment.