You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by mg...@apache.org on 2023/05/24 20:05:39 UTC

[avro] branch branch-1.11 updated: Bump proptest from 1.1.0 to 1.2.0 in /lang/rust (#2251)

This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch branch-1.11
in repository https://gitbox.apache.org/repos/asf/avro.git


The following commit(s) were added to refs/heads/branch-1.11 by this push:
     new a8eb55b76 Bump proptest from 1.1.0 to 1.2.0 in /lang/rust (#2251)
a8eb55b76 is described below

commit a8eb55b76ef8bfbf2fd86b6fefb7df956b1e16ee
Author: dependabot[bot] <49...@users.noreply.github.com>
AuthorDate: Wed May 24 23:05:01 2023 +0300

    Bump proptest from 1.1.0 to 1.2.0 in /lang/rust (#2251)
    
    Bumps [proptest](https://github.com/proptest-rs/proptest) from 1.1.0 to 1.2.0.
    - [Release notes](https://github.com/proptest-rs/proptest/releases)
    - [Changelog](https://github.com/proptest-rs/proptest/blob/master/CHANGELOG.md)
    - [Commits](https://github.com/proptest-rs/proptest/compare/v1.1.0...v1.2.0)
    
    ---
    updated-dependencies:
    - dependency-name: proptest
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <su...@github.com>
    Co-authored-by: dependabot[bot] <49...@users.noreply.github.com>
    (cherry picked from commit d383b3b5564ee49805d34dc5c19156a67dc39dab)
---
 lang/rust/Cargo.lock             | 11 ++---------
 lang/rust/avro_derive/Cargo.toml |  2 +-
 2 files changed, 3 insertions(+), 10 deletions(-)

diff --git a/lang/rust/Cargo.lock b/lang/rust/Cargo.lock
index b9f25cde2..08cad663d 100644
--- a/lang/rust/Cargo.lock
+++ b/lang/rust/Cargo.lock
@@ -733,15 +733,14 @@ dependencies = [
 
 [[package]]
 name = "proptest"
-version = "1.1.0"
+version = "1.2.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "29f1b898011ce9595050a68e60f90bad083ff2987a695a42357134c8381fba70"
+checksum = "4e35c06b98bf36aba164cc17cb25f7e232f5c4aeea73baa14b8a9f0d92dbfa65"
 dependencies = [
  "bitflags",
  "byteorder",
  "lazy_static",
  "num-traits",
- "quick-error",
  "rand",
  "rand_chacha",
  "rand_xorshift",
@@ -755,12 +754,6 @@ version = "0.2.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "658fa1faf7a4cc5f057c9ee5ef560f717ad9d8dc66d975267f709624d6e1ab88"
 
-[[package]]
-name = "quick-error"
-version = "2.0.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
-
 [[package]]
 name = "quote"
 version = "1.0.27"
diff --git a/lang/rust/avro_derive/Cargo.toml b/lang/rust/avro_derive/Cargo.toml
index d79cbe762..73857201a 100644
--- a/lang/rust/avro_derive/Cargo.toml
+++ b/lang/rust/avro_derive/Cargo.toml
@@ -41,5 +41,5 @@ syn = { default-features = false, version = "2.0.16", features = ["full", "fold"
 
 [dev-dependencies]
 apache-avro = { default-features = false, path = "../avro", features = ["derive"] }
-proptest = { default-features = false, version = "1.1.0", features = ["std"] }
+proptest = { default-features = false, version = "1.2.0", features = ["std"] }
 serde = { default-features = false, version = "1.0.163", features = ["derive"] }