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 Dec 7, 2023
1 parent c0ada55 commit 271701b
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
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.14"
argh = "0.1.12"
2 changes: 1 addition & 1 deletion lang-lexer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ 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.13", optional = true }

# v2 lexer dependencies
glsl-lang-pp = { version = "=0.5.2", optional = true }
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"
2 changes: 1 addition & 1 deletion lang-util/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ 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"

Expand Down
6 changes: 3 additions & 3 deletions lang/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ categories = ["parser-implementations", "rendering"]

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

lang-util = { version = "=0.5.2", features = ["lalrpop"] }
Expand All @@ -31,8 +31,8 @@ lalrpop = "0.20.0"
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 = "6"

[[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.74.0"
components = ["rustfmt", "clippy"]
profile = "minimal"

0 comments on commit 271701b

Please sign in to comment.