Merge pull request #833 from str4d/zcash_history-fix-deps

zcash_history: Migrate to `primitive-types 0.12`
This commit is contained in:
Daira Hopwood 2023-05-03 17:37:28 +00:00 committed by GitHub
commit e4f793db35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 4 deletions

View File

@ -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

View File

@ -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"]