Skip to content

Commit 77f143e

Browse files
fix(deps): update all non-major dependencies
1 parent e8782ee commit 77f143e

File tree

10 files changed

+21
-21
lines changed

10 files changed

+21
-21
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
with:
1818
fetch-depth: 0
1919

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

fuzz/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ path = "src/bin/lang_test.rs"
2323
[dependencies]
2424
glsl-lang-pp = "*"
2525
glsl-lang = "*"
26-
afl = "0.11"
27-
argh = "0.1.5"
26+
afl = "0.15"
27+
argh = "0.1.12"

lang-lexer/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ thiserror = "1.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.14", optional = true }
2525

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

3030
[features]
3131
default = []

lang-pp/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,17 @@ rowan = { version = "0.15", 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.10", optional = true }
29+
itertools = { version = "0.12", optional = true }
3030

3131
# Extension registry
32-
once_cell = { version = "1.17.1", optional = true }
32+
once_cell = { version = "1.19.0", optional = true }
3333

3434
[dev-dependencies]
3535
lang-util-dev = "=0.5.2"
3636

37-
expect-test = "1.3"
37+
expect-test = "1.4"
3838
encoding_rs = "0.8"
39-
regex = "1.5"
39+
regex = "1.10"
4040

4141
[build-dependencies]
4242
string_cache_codegen = "0.5"

lang-util-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ path = "src/lib.rs"
1717
proc-macro = true
1818

1919
[dependencies]
20-
darling = "0.14"
20+
darling = "0.20"
2121
proc-macro2 = "1.0"
2222
quote = "1.0"
2323
syn = "1.0"

lang-util-dev/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ categories = ["parsing"]
1414

1515
[dependencies]
1616
derive_more = "0.99"
17-
similar-asserts = "1.4"
17+
similar-asserts = "1.5"

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.5.2"
1717
line-span = "0.1"
18-
smol_str = "0.1"
18+
smol_str = "0.2"
1919
text-size = "1.1"
2020
derive_more = "0.99"
2121

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

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

lang/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ 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"] }
17-
once_cell = "1.17.1"
16+
lalrpop-util = { version = "0.20.2", default-features = false, features = ["std"] }
17+
once_cell = "1.19.0"
1818
thiserror = "1.0"
1919

2020
lang-util = { version = "=0.5.2", features = ["lalrpop"] }
@@ -25,14 +25,14 @@ glsl-lang-types = "=0.5.2"
2525
rserde = { version = "1.0", optional = true, features = ["derive"], package = "serde" }
2626

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

3030
[dev-dependencies]
3131
lang-util-dev = "=0.5.2"
3232
glsl-lang-pp = "=0.5.2"
3333

34-
criterion = "0.3"
35-
expect-test = "1.3"
34+
criterion = "0.5"
35+
expect-test = "1.4"
3636
glsl = "7"
3737

3838
[[test]]

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.70.0"
2+
channel = "1.76.0"
33
components = ["rustfmt", "clippy"]
44
profile = "minimal"

xtask/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ edition = "2021"
66
[dependencies]
77
anyhow = "1.0"
88
argh = "0.1"
9-
heck = "0.4"
9+
heck = "0.5"

0 commit comments

Comments
 (0)