Skip to content

Commit 137604c

Browse files
fix(deps): update all non-major dependencies
1 parent 33c5930 commit 137604c

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Check clippy lints
3939
run: cargo clippy -- -D warnings -A clippy::result_large_err
4040

41-
- uses: cocogitto/cocogitto-action@v3.8
41+
- uses: cocogitto/cocogitto-action@v3.11
4242
with:
4343
check-latest-tag-only: true
4444
git-user: glsl-lang
@@ -155,7 +155,7 @@ jobs:
155155
&& cargo-workspaces -V
156156
)
157157
158-
- uses: cocogitto/cocogitto-action@v3.8
158+
- uses: cocogitto/cocogitto-action@v3.11
159159
id: release
160160
# Set to true because the action fails if there's nothing to release
161161
continue-on-error: true

lang-lexer/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ thiserror = "2.0"
2121
rserde = { version = "1.0", optional = true, features = ["derive"], package = "serde" }
2222

2323
# v1 lexer dependencies
24-
logos = { version = "0.12", optional = true }
24+
logos = { version = "0.15", optional = true }
2525

2626
# v2 lexer dependencies
2727
glsl-lang-pp = { version = "=0.7.2", optional = true }
28-
lalrpop-util = { version = "0.20.0", default-features = false, optional = true }
28+
lalrpop-util = { version = "0.22.0", default-features = false, optional = true }
2929

3030
[features]
3131
default = []

lang-pp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ arrayvec = "0.7"
2222
derive_more = { version = "1.0", features = ["display"] }
2323

2424
# Preprocessor
25-
rowan = { version = "0.15", optional = true }
25+
rowan = { version = "0.16", optional = true }
2626
cbitset = { version = "0.2", optional = true }
2727
static_assertions = { version = "1.1", optional = true }
2828
bimap = { version = "0.6", optional = true }
29-
itertools = { version = "0.13", optional = true }
29+
itertools = { version = "0.14", optional = true }
3030

3131
# Extension registry
3232
once_cell = { version = "1.17.1", optional = true }

lang-util/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ categories = ["parsing"]
1515
[dependencies]
1616
lang-util-derive = "=0.7.2"
1717
line-span = "0.1"
18-
smol_str = "0.2"
18+
smol_str = "0.3"
1919
text-size = "1.1"
2020
derive_more = { version = "1.0", features = ["display", "from"] }
2121

2222
# lalrpop dependencies
23-
lalrpop-util = { version = "0.20.0", default-features = false, optional = true }
23+
lalrpop-util = { version = "0.22.0", default-features = false, optional = true }
2424

2525
rserde = { version = "1.0", optional = true, features = ["derive"], package = "serde" }
2626

lang/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ keywords = ["glsl", "language", "parser", "ast"]
1313
categories = ["parser-implementations", "rendering"]
1414

1515
[dependencies]
16-
lalrpop-util = { version = "0.20.0", default-features = false, features = ["std"] }
16+
lalrpop-util = { version = "0.22.0", default-features = false, features = ["std"] }
1717
once_cell = "1.17.1"
1818
thiserror = "2.0"
1919

@@ -25,7 +25,7 @@ glsl-lang-types = "=0.7.2"
2525
rserde = { version = "1.0", optional = true, features = ["derive"], package = "serde" }
2626

2727
[build-dependencies]
28-
lalrpop = "0.20.0"
28+
lalrpop = "0.22.0"
2929

3030
[dev-dependencies]
3131
lang-util-dev = "=0.7.2"

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[toolchain]
2-
channel = "1.80.0"
2+
channel = "1.85.1"
33
components = ["rustfmt", "clippy"]
44
profile = "minimal"

0 commit comments

Comments
 (0)