From 75cfc3b757a4b3059570032ba262c1bcdf121203 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 7 Dec 2024 13:20:28 +0000 Subject: [PATCH] chore(deps): update all non-major dependencies --- .github/workflows/build.yml | 4 ++-- lang-lexer/Cargo.toml | 4 ++-- lang-pp/Cargo.toml | 2 +- lang-util/Cargo.toml | 4 ++-- lang/Cargo.toml | 4 ++-- rust-toolchain.toml | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 00cd8a876..714e47153 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 @@ -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 diff --git a/lang-lexer/Cargo.toml b/lang-lexer/Cargo.toml index 3b8a935e1..ff96ae17e 100644 --- a/lang-lexer/Cargo.toml +++ b/lang-lexer/Cargo.toml @@ -21,11 +21,11 @@ thiserror = "2.0" rserde = { version = "1.0", optional = true, features = ["derive"], package = "serde" } # v1 lexer dependencies -logos = { version = "0.12", optional = true } +logos = { version = "0.15", optional = true } # v2 lexer dependencies glsl-lang-pp = { version = "=0.7.2", 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 = [] diff --git a/lang-pp/Cargo.toml b/lang-pp/Cargo.toml index 6b5937c64..805d1bf62 100644 --- a/lang-pp/Cargo.toml +++ b/lang-pp/Cargo.toml @@ -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 } diff --git a/lang-util/Cargo.toml b/lang-util/Cargo.toml index 0e0f66cc0..60c23818e 100644 --- a/lang-util/Cargo.toml +++ b/lang-util/Cargo.toml @@ -15,12 +15,12 @@ categories = ["parsing"] [dependencies] lang-util-derive = "=0.7.2" 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" } diff --git a/lang/Cargo.toml b/lang/Cargo.toml index 16db74aa8..6c74e70b3 100644 --- a/lang/Cargo.toml +++ b/lang/Cargo.toml @@ -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 = "2.0" @@ -25,7 +25,7 @@ glsl-lang-types = "=0.7.2" 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.2" diff --git a/rust-toolchain.toml b/rust-toolchain.toml index ff6d7a9a8..dcea74bc7 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,4 +1,4 @@ [toolchain] -channel = "1.80.0" +channel = "1.83.0" components = ["rustfmt", "clippy"] profile = "minimal"