Skip to content

Commit

Permalink
chore(deps): update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
dnaka91 committed Sep 29, 2024
1 parent 3c71f36 commit 4354773
Show file tree
Hide file tree
Showing 14 changed files with 145 additions and 125 deletions.
219 changes: 119 additions & 100 deletions Cargo.lock

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,21 +25,21 @@ clone_on_ref_ptr = "warn"
[workspace.dependencies]
anstream = "0.6.15"
anstyle = "1.0.8"
anyhow = "1.0.86"
clap = { version = "4.5.15", features = ["derive", "wrap_help"] }
anyhow = "1.0.89"
clap = { version = "4.5.18", features = ["derive", "wrap_help"] }
glob = "0.3.1"
indoc = "2.0.5"
insta = { version = "1.39.0", features = ["glob"] }
insta = { version = "1.40.0", features = ["glob"] }
miette = { version = "7.2.0", default-features = false }
mimalloc = "0.1.43"
proc-macro2 = { version = "1.0.86", default-features = false }
quote = { version = "1.0.36", default-features = false }
quote = { version = "1.0.37", default-features = false }
rustc-hash = "2.0.0"
serde = { version = "1.0.206", features = ["derive"] }
serde_json = "1.0.122"
syn = "2.0.73"
thiserror = "1.0.63"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
syn = "2.0.79"
thiserror = "1.0.64"

[profile.release]
lto = "thin"
strip = true
strip = false
2 changes: 1 addition & 1 deletion book/biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
"$schema": "https://biomejs.dev/schemas/1.9.2/schema.json",
"organizeImports": {
"enabled": true
},
Expand Down
4 changes: 2 additions & 2 deletions book/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"lint": "biome check --write .vitepress/config.mts"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"vitepress": "^1.3.2"
"@biomejs/biome": "^1.9.2",
"vitepress": "^1.3.4"
}
}
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion crates/mabo-build/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ mabo-compiler = { path = "../mabo-compiler" }
mabo-parser = { path = "../mabo-parser" }
mabo-project = { path = "../mabo-project" }
miette = { workspace = true, features = ["fancy-no-backtrace"] }
prettyplease = "0.2.20"
prettyplease = "0.2.22"
proc-macro2.workspace = true
quote.workspace = true
syn.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions crates/mabo-doc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"build": "bun run tailwind --minify"
},
"dependencies": {
"@tailwindcss/typography": "^0.5.14",
"tailwindcss": "^3.4.9"
"@tailwindcss/typography": "^0.5.15",
"tailwindcss": "^3.4.13"
}
}
2 changes: 1 addition & 1 deletion crates/mabo-lsp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ clap.workspace = true
directories = "5.0.1"
line-index = "0.1.1"
log = { version = "0.4.22", features = ["kv_std", "release_max_level_info", "std"] }
lsp-server = "0.7.6"
lsp-server = "0.7.7"
lsp-types = { version = "0.97.0", features = ["proposed"] }
mabo-compiler = { path = "../mabo-compiler" }
mabo-meta = { path = "../mabo-meta" }
Expand Down
2 changes: 1 addition & 1 deletion crates/mabo-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ anstream.workspace = true
anstyle.workspace = true
mabo-derive = { path = "../mabo-derive" }
miette = { workspace = true, features = ["derive"] }
winnow = "0.6.18"
winnow = "0.6.20"

[dev-dependencies]
indoc.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions crates/mabo-project/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ repository.workspace = true
license.workspace = true

[dependencies]
globset = "0.4.14"
ignore = "0.4.22"
globset = "0.4.15"
ignore = "0.4.23"
serde.workspace = true
spdx = "0.10.6"
thiserror.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/mabo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repository.workspace = true
license.workspace = true

[dependencies]
bytes = "1.7.1"
bytes = "1.7.2"
paste = "1.0.15"
thiserror.workspace = true

Expand Down
1 change: 1 addition & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@ skip = [
]
skip-tree = [
{ name = "windows-sys", version = "0.48", depth = 3 },
{ name = "windows-sys", version = "0.52", depth = 3 },
]
2 changes: 1 addition & 1 deletion vscode-extension/biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
"$schema": "https://biomejs.dev/schemas/1.9.2/schema.json",
"organizeImports": {
"enabled": true
},
Expand Down
8 changes: 4 additions & 4 deletions vscode-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -244,11 +244,11 @@
"vscode-languageclient": "^9.0.1"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@biomejs/biome": "^1.9.2",
"@types/vscode": "~1.82.0",
"@vscode/vsce": "~2.31.1",
"esbuild": "^0.23.0",
"@vscode/vsce": "~3.1.0",
"esbuild": "^0.24.0",
"js-yaml": "^4.1.0",
"typescript": "^5.5.4"
"typescript": "^5.6.2"
}
}

0 comments on commit 4354773

Please sign in to comment.