Skip to content

Commit

Permalink
chore: update crate and trigger release
Browse files Browse the repository at this point in the history
  • Loading branch information
ematipico committed Aug 24, 2023
1 parent ba49167 commit c1613f7
Show file tree
Hide file tree
Showing 8 changed files with 252 additions and 62 deletions.
295 changes: 242 additions & 53 deletions Cargo.lock

Large diffs are not rendered by default.

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"] }
atty = "0.2.14"
# 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_console/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ version = "0.0.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
atty = "0.2.14"
atty = { workspace = true }
rome_markup = { workspace = true }
rome_text_size = { workspace = true }
schemars = { workspace = true, optional = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/rome_fs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ version = "0.2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
crossbeam = "0.8.1"
crossbeam = "0.8.2"
indexmap = { workspace = true }
parking_lot = { version = "0.12.0", features = ["arc_lock"] }
rayon = "1.5.1"
rayon = "1.7.0"
rome_console = { workspace = true }
rome_diagnostics = { workspace = true }
schemars = { workspace = true, optional = true }
Expand Down
2 changes: 1 addition & 1 deletion editors/vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"publisher": "biomejs",
"displayName": "Biome",
"description": "Biome LSP VS Code Extension",
"version": "0.2.1",
"version": "0.2.2",
"icon": "icon.png",
"activationEvents": [
"onLanguage:javascript",
Expand Down
2 changes: 1 addition & 1 deletion packages/@biomejs/biome/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@biomejs/biome",
"version": "0.2.1",
"version": "0.2.2",
"bin": "bin/biome",
"scripts": {
"postinstall": "node scripts/postinstall.js"
Expand Down
6 changes: 3 additions & 3 deletions xtask/bench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ rome_rowan = { path = "../../crates/rome_rowan" }

pico-args = { version = "0.5.0", features = ["eq-separator"] }
timing = "0.2.3"
criterion = "0.4.0"
criterion = "0.5.1"
regex = "1.5.5"
ureq = "2.4.0"
ureq = "2.7.1"
url = "2.2.2"
itertools = "0.10.3"
itertools = "0.11.0"
ansi_rgb = "0.2.0"

countme = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion xtask/coverage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ serde_yaml = "0.9.9"
regex = "1.5.5"
once_cell = "1.9.0"
walkdir = "2.3.2"
atty = "0.2.14"
atty = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { version = "0.3.11", features = ["env-filter", "std"] }
backtrace = "0.3.65"

0 comments on commit c1613f7

Please sign in to comment.