From bf059a68e7ffde22d44b842ee55c1e540234822d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 7 Sep 2024 18:01:02 +0200 Subject: [PATCH] Bump serde from 1.0.204 to 1.0.209 (#88) Bumps [serde](https://github.com/serde-rs/serde) from 1.0.204 to 1.0.209. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.204...v1.0.209) --- updated-dependencies: - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 8 ++++---- Cargo.toml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a236605..3466897 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -562,18 +562,18 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" [[package]] name = "serde" -version = "1.0.204" +version = "1.0.209" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12" +checksum = "99fce0ffe7310761ca6bf9faf5115afbc19688edd00171d81b1bb1b116c63e09" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.204" +version = "1.0.209" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222" +checksum = "a5831b979fd7b5439637af1752d535ff49f4860c0f341d1baeb6faf0f4242170" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index ee94f3c..7371891 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,12 +17,12 @@ thiserror = "1.0.63" strum = { version = "0.26.3", features = ["derive"] } duplicate = "1.0.0" -serde = { version = "1.0.204", optional = true } +serde = { version = "1.0.209", optional = true } [dev-dependencies] criterion = { version = "0.5.1", features = ["html_reports"] } # Serde is used for comparison in benchmarks and for tests -serde = "1.0.204" +serde = "1.0.209" # When updating serde_json, adjust Struson Serde integration behavior to match serde_json serde_json = "1.0.120" # Used for verifying in allocation tests that no allocations occur in certain situations