From 3dce877a36271cb5816e9fb5d5bb7e3b93a81caf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 13 Feb 2026 13:03:37 +0000 Subject: [PATCH] Chore(deps): Bump lalrpop from 0.22.2 to 0.23.0 Bumps [lalrpop](https://github.com/lalrpop/lalrpop) from 0.22.2 to 0.23.0. - [Changelog](https://github.com/lalrpop/lalrpop/blob/master/RELEASES.md) - [Commits](https://github.com/lalrpop/lalrpop/compare/0.22.2...0.23.0) --- updated-dependencies: - dependency-name: lalrpop dependency-version: 0.23.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 50 +++++++++++++++++++++++++++++++------------------- Cargo.toml | 2 +- 2 files changed, 32 insertions(+), 20 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4eb462b..aa200a2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -169,6 +169,12 @@ version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" +[[package]] +name = "foldhash" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" + [[package]] name = "generic-array" version = "0.14.7" @@ -184,6 +190,9 @@ name = "hashbrown" version = "0.15.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289" +dependencies = [ + "foldhash", +] [[package]] name = "home" @@ -230,15 +239,15 @@ dependencies = [ [[package]] name = "lalrpop" -version = "0.22.2" +version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba4ebbd48ce411c1d10fb35185f5a51a7bfa3d8b24b4e330d30c9e3a34129501" +checksum = "6e15283adc509c301924c886fcf9e0c8b0cdf4212c138edc7cca4bd89b31aa1c" dependencies = [ "ascii-canvas", "bit-set", "ena", "itertools", - "lalrpop-util", + "lalrpop-util 0.23.0", "petgraph", "pico-args", "regex", @@ -260,6 +269,15 @@ dependencies = [ "rustversion", ] +[[package]] +name = "lalrpop-util" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c3afd1d719c117a3801a2740840c22e40f59e13f51fcd631068fe80266a001d" +dependencies = [ + "regex-automata", +] + [[package]] name = "libc" version = "0.2.169" @@ -297,19 +315,13 @@ version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" -[[package]] -name = "once_cell" -version = "1.16.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860" - [[package]] name = "open-cds-parser" version = "0.0.1" dependencies = [ "ast-term-derive", "lalrpop", - "lalrpop-util", + "lalrpop-util 0.22.2", "regex", ] @@ -338,19 +350,20 @@ dependencies = [ [[package]] name = "petgraph" -version = "0.7.1" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772" +checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455" dependencies = [ "fixedbitset", + "hashbrown", "indexmap", ] [[package]] name = "phf_shared" -version = "0.10.0" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" +checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266" dependencies = [ "siphasher", ] @@ -456,9 +469,9 @@ dependencies = [ [[package]] name = "siphasher" -version = "0.3.10" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" +checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e" [[package]] name = "smallvec" @@ -468,12 +481,11 @@ checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" [[package]] name = "string_cache" -version = "0.8.4" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08" +checksum = "a18596f8c785a729f2819c0f6a7eae6ebeebdfffbfe4214ae6b087f690e31901" dependencies = [ "new_debug_unreachable", - "once_cell", "parking_lot", "phf_shared", "precomputed-hash", diff --git a/Cargo.toml b/Cargo.toml index bac3d92..3fc606d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ version = "0.0.1" edition = "2021" [build-dependencies] -lalrpop = "0.22.2" +lalrpop = "0.23.0" [dependencies] lalrpop-util = { version = "0.22.2", features = ["lexer"] }