Skip to content

Commit

Permalink
chore(deps): update all non-major dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Nov 11, 2024
1 parent b84eec0 commit 67d8727
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Check clippy lints
run: cargo clippy -- -D warnings -A clippy::result_large_err

- uses: cocogitto/cocogitto-action@v3.8
- uses: cocogitto/cocogitto-action@v3.9
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.8
- uses: cocogitto/cocogitto-action@v3.9
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 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.7.0", optional = true }
lalrpop-util = { version = "0.20.0", default-features = false, optional = true }
lalrpop-util = { version = "0.22.0", default-features = false, optional = true }

[features]
default = []
Expand Down
2 changes: 1 addition & 1 deletion lang-pp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ arrayvec = "0.7"
derive_more = { version = "1.0", features = ["display"] }

# Preprocessor
rowan = { version = "0.15", optional = true }
rowan = { version = "0.16", optional = true }
cbitset = { version = "0.2", optional = true }
static_assertions = { version = "1.1", optional = true }
bimap = { version = "0.6", optional = true }
Expand Down
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.7.0"
line-span = "0.1"
smol_str = "0.2"
smol_str = "0.3"
text-size = "1.1"
derive_more = { version = "1.0", features = ["display", "from"] }

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

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

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

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

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

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

[dev-dependencies]
lang-util-dev = "=0.7.0"
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.80.0"
channel = "1.82.0"
components = ["rustfmt", "clippy"]
profile = "minimal"

0 comments on commit 67d8727

Please sign in to comment.