From 149d7ad83e84936f1d5f765b03335f8811ad5b05 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Wed, 3 May 2023 17:55:14 +0100 Subject: [PATCH] zcash_history: Migrate to `primitive-types 0.12` We also disable the default `std` feature, to remove transitive dependencies we don't use. --- zcash_history/CHANGELOG.md | 1 + zcash_history/Cargo.toml | 5 +---- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/zcash_history/CHANGELOG.md b/zcash_history/CHANGELOG.md index 0116eb9de..8b1fdd219 100644 --- a/zcash_history/CHANGELOG.md +++ b/zcash_history/CHANGELOG.md @@ -8,6 +8,7 @@ and this library adheres to Rust's notion of ## [Unreleased] ### Changed - MSRV is now 1.60.0. +- Bumped dependencies to `primitive-types 0.12`. ## [0.3.0] - 2022-05-11 ### Added diff --git a/zcash_history/Cargo.toml b/zcash_history/Cargo.toml index c762039ac..254ced845 100644 --- a/zcash_history/Cargo.toml +++ b/zcash_history/Cargo.toml @@ -14,14 +14,11 @@ assert_matches = "1.3.0" proptest = "1.0.0" [dependencies] -primitive-types = "0.11" +primitive-types = { version = "0.12", default-features = false } byteorder = "1" blake2 = { package = "blake2b_simd", version = "1" } proptest = { version = "1.0.0", optional = true } -# pin the winnow dependency due to MSRV of 1.64 in 0.4.2 -winnow = { version = "=0.4.1" } - [features] test-dependencies = ["proptest"]