From e46c2ec5064e8e343eb0319d8aca95c8c5f4c841 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 23 Oct 2024 22:13:46 +0000 Subject: [PATCH] Bump the rust-production group across 1 directory with 4 updates Bumps the rust-production group with 4 updates in the / directory: [serde_json](https://github.com/serde-rs/json), [log](https://github.com/rust-lang/log), [lalrpop-util](https://github.com/lalrpop/lalrpop) and [uuid](https://github.com/uuid-rs/uuid). Updates `serde_json` from 1.0.116 to 1.0.132 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.116...1.0.132) Updates `log` from 0.4.21 to 0.4.22 - [Release notes](https://github.com/rust-lang/log/releases) - [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/log/compare/0.4.21...0.4.22) Updates `lalrpop-util` from 0.20.2 to 0.22.0 - [Changelog](https://github.com/lalrpop/lalrpop/blob/master/RELEASES.md) - [Commits](https://github.com/lalrpop/lalrpop/compare/0.20.2...0.22.0) Updates `uuid` from 1.8.0 to 1.11.0 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.8.0...1.11.0) --- updated-dependencies: - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-production - dependency-name: log dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-production - dependency-name: lalrpop-util dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-production - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 29 ++++++++++++++++++++--------- Cargo.toml | 8 ++++---- 2 files changed, 24 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6d3ebaf..bbce7ea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -315,7 +315,7 @@ dependencies = [ "indexmap", "instant", "lalrpop", - "lalrpop-util", + "lalrpop-util 0.20.2", "lazy_static", "log", "num-integer", @@ -336,7 +336,7 @@ version = "8.0.0" dependencies = [ "egglog", "egraph-serialize", - "lalrpop-util", + "lalrpop-util 0.22.0", "log", "ordered-float", "pyo3", @@ -610,7 +610,7 @@ dependencies = [ "bit-set", "ena", "itertools", - "lalrpop-util", + "lalrpop-util 0.20.2", "petgraph", "pico-args", "regex", @@ -631,6 +631,16 @@ dependencies = [ "regex-automata", ] +[[package]] +name = "lalrpop-util" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "feee752d43abd0f4807a921958ab4131f692a44d4d599733d4419c5d586176ce" +dependencies = [ + "regex-automata", + "rustversion", +] + [[package]] name = "lazy_static" version = "1.4.0" @@ -661,9 +671,9 @@ dependencies = [ [[package]] name = "log" -version = "0.4.21" +version = "0.4.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" +checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" [[package]] name = "memchr" @@ -1118,12 +1128,13 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.116" +version = "1.0.132" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e17db7126d17feb94eb3fad46bf1a96b034e8aacbc2e775fe81505f8b0b2813" +checksum = "d726bfaff4b320266d395898905d0eba0345aae23b54aee3a737e260fd46db03" dependencies = [ "indexmap", "itoa", + "memchr", "ryu", "serde", ] @@ -1318,9 +1329,9 @@ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "uuid" -version = "1.8.0" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" +checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a" dependencies = [ "getrandom", ] diff --git a/Cargo.toml b/Cargo.toml index 43c64c3..e1b5318 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,12 +21,12 @@ egraph-serialize = { version = "0.2.0", features = ["serde", "graphviz"] } # "serde", # "graphviz", # ] } -serde_json = "1.0.1" +serde_json = "1.0.132" pyo3-log = "0.11.0" -log = "0.4.21" -lalrpop-util = { version = "0.20", features = ["lexer"] } +log = "0.4.22" +lalrpop-util = { version = "0.22", features = ["lexer"] } ordered-float = "3.7" -uuid = { version = "1.8.0", features = ["v4"] } +uuid = { version = "1.11.0", features = ["v4"] } # Use unreleased version of egraph-serialize in egglog as well # [patch.crates-io]