Skip to content
This repository has been archived by the owner on Aug 31, 2023. It is now read-only.

Commit

Permalink
chore: share crossbeam
Browse files Browse the repository at this point in the history
  • Loading branch information
ematipico committed Jul 31, 2023
1 parent efdb8c3 commit 43e0387
Show file tree
Hide file tree
Showing 5 changed files with 58 additions and 14 deletions.
59 changes: 51 additions & 8 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ serde = { version = "1.0.163", features = ["derive"], default-featur
serde_json = "1.0.96"
smallvec = { version = "1.10.0", features = ["union", "const_new"] }
tracing = { version = "0.1.37", default-features = false, features = ["std"] }
crossbeam = "0.8.2"
# pinning to version 1.18 to avoid multiple versions of windows-sys as dependency
tokio = { version = "~1.18.5" }

Expand Down
2 changes: 1 addition & 1 deletion crates/rome_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ path = "src/main.rs"
[dependencies]
anyhow = "1.0.52"
bpaf = { workspace = true }
crossbeam = "0.8.1"
crossbeam = { workspace = true }
dashmap = { workspace = true }
hdrhistogram = { version = "7.5.0", default-features = false }
indexmap = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/rome_fs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ version = "0.0.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
crossbeam = "0.8.1"
crossbeam = { workspace = true }
indexmap = { workspace = true }
parking_lot = { version = "0.12.0", features = ["arc_lock"] }
rayon = "1.5.1"
Expand Down
8 changes: 4 additions & 4 deletions crates/rome_v8/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ version = "0.1.0"

[dependencies]
anyhow = "1.0.57"
serde = "1.0.33"
serde_v8 = { version = "0.65.0" }
v8 = { version = "0.51.0", default-features = false }
serde = { workspace = true }
serde_v8 = { version = "0.108.0" }
v8 = { version = "0.74.3", default-features = false }

rome_js_factory = { workspace = true }
rome_js_syntax = { workspace = true }
rome_rowan = { workspace = true, features = ["serde"] }

[dev-dependencies]
bpaf = { workspace = true }
crossbeam = "0.8.2"
crossbeam = { workspace = true }
rome_console = { workspace = true }
rome_diagnostics = { workspace = true }
rome_fs = { workspace = true }
Expand Down

0 comments on commit 43e0387

Please sign in to comment.