From 9745c949f6f029aeb73b976715ac17d71eef132e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 8 Jul 2023 12:28:37 +0000 Subject: [PATCH] Bump typed-builder from 0.14.0 to 0.15.0 in /lang/rust Bumps [typed-builder](https://github.com/idanarye/rust-typed-builder) from 0.14.0 to 0.15.0. - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) --- updated-dependencies: - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- lang/rust/Cargo.lock | 15 ++++++++++++--- lang/rust/avro/Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/lang/rust/Cargo.lock b/lang/rust/Cargo.lock index ab0e9d27a2f..0ecc7a821c2 100644 --- a/lang/rust/Cargo.lock +++ b/lang/rust/Cargo.lock @@ -1007,13 +1007,22 @@ dependencies = [ [[package]] name = "typed-builder" -version = "0.14.0" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64cba322cb9b7bc6ca048de49e83918223f35e7a86311267013afff257004870" +checksum = "4d2135600ca28125d27c63643ed7789b9f467a316e3a8ad98a9abeeb3eec4a83" +dependencies = [ + "typed-builder-macro", +] + +[[package]] +name = "typed-builder-macro" +version = "0.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "952108e5d54c3c3f6552e8c5cdb3600adf49c22a4ea82066dea90d2f5c71c526" dependencies = [ "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.23", ] [[package]] diff --git a/lang/rust/avro/Cargo.toml b/lang/rust/avro/Cargo.toml index 7dfcd28ad15..021b62fe1e6 100644 --- a/lang/rust/avro/Cargo.toml +++ b/lang/rust/avro/Cargo.toml @@ -70,7 +70,7 @@ snap = { default-features = false, version = "1.1.0", optional = true } strum = { default-features = false, version = "0.25.0" } strum_macros = { default-features = false, version = "0.25.1" } thiserror = { default-features = false, version = "1.0.43" } -typed-builder = { default-features = false, version = "0.14.0" } +typed-builder = { default-features = false, version = "0.15.0" } uuid = { default-features = false, version = "1.4.0", features = ["serde", "std"] } xz2 = { default-features = false, version = "0.1.7", optional = true } zerocopy = { default-features = false, version = "0.6.1" }