Skip to content

Commit

Permalink
fix(deps): update all non-major dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Mar 21, 2024
1 parent e8782ee commit 95bec0d
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 21 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
with:
fetch-depth: 0

- uses: cocogitto/cocogitto-action@v3.5
- uses: cocogitto/cocogitto-action@v3.6
with:
check-latest-tag-only: true
git-user: glsl-lang
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
&& cargo-workspaces -V
)
- uses: cocogitto/cocogitto-action@v3.5
- uses: cocogitto/cocogitto-action@v3.6
id: release
# Set to true because the action fails if there's nothing to release
continue-on-error: true
Expand Down
4 changes: 2 additions & 2 deletions fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ path = "src/bin/lang_test.rs"
[dependencies]
glsl-lang-pp = "*"
glsl-lang = "*"
afl = "0.11"
argh = "0.1.5"
afl = "0.15"
argh = "0.1.12"
4 changes: 2 additions & 2 deletions lang-lexer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ thiserror = "1.0"
rserde = { version = "1.0", optional = true, features = ["derive"], package = "serde" }

# v1 lexer dependencies
logos = { version = "0.12", optional = true }
logos = { version = "0.14", optional = true }

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

[features]
default = []
Expand Down
8 changes: 4 additions & 4 deletions lang-pp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,17 @@ rowan = { version = "0.15", optional = true }
cbitset = { version = "0.2", optional = true }
static_assertions = { version = "1.1", optional = true }
bimap = { version = "0.6", optional = true }
itertools = { version = "0.10", optional = true }
itertools = { version = "0.12", optional = true }

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

[dev-dependencies]
lang-util-dev = "=0.5.2"

expect-test = "1.3"
expect-test = "1.4"
encoding_rs = "0.8"
regex = "1.5"
regex = "1.10"

[build-dependencies]
string_cache_codegen = "0.5"
Expand Down
2 changes: 1 addition & 1 deletion lang-util-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ path = "src/lib.rs"
proc-macro = true

[dependencies]
darling = "0.14"
darling = "0.20"
proc-macro2 = "1.0"
quote = "1.0"
syn = "1.0"
2 changes: 1 addition & 1 deletion lang-util-dev/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ categories = ["parsing"]

[dependencies]
derive_more = "0.99"
similar-asserts = "1.4"
similar-asserts = "1.5"
4 changes: 2 additions & 2 deletions lang-util/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ categories = ["parsing"]
[dependencies]
lang-util-derive = "=0.5.2"
line-span = "0.1"
smol_str = "0.1"
smol_str = "0.2"
text-size = "1.1"
derive_more = "0.99"

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

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

Expand Down
10 changes: 5 additions & 5 deletions lang/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ keywords = ["glsl", "language", "parser", "ast"]
categories = ["parser-implementations", "rendering"]

[dependencies]
lalrpop-util = { version = "0.20.0", default-features = false, features = ["std"] }
once_cell = "1.17.1"
lalrpop-util = { version = "0.20.2", default-features = false, features = ["std"] }
once_cell = "1.19.0"
thiserror = "1.0"

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

[build-dependencies]
lalrpop = "0.20.0"
lalrpop = "0.20.2"

[dev-dependencies]
lang-util-dev = "=0.5.2"
glsl-lang-pp = "=0.5.2"

criterion = "0.3"
expect-test = "1.3"
criterion = "0.5"
expect-test = "1.4"
glsl = "7"

[[test]]
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[toolchain]
channel = "1.70.0"
channel = "1.77.0"
components = ["rustfmt", "clippy"]
profile = "minimal"
2 changes: 1 addition & 1 deletion xtask/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ edition = "2021"
[dependencies]
anyhow = "1.0"
argh = "0.1"
heck = "0.4"
heck = "0.5"

0 comments on commit 95bec0d

Please sign in to comment.