Skip to content

Commit 9349bbd

Browse files
authored
Pin upper version of serde to <1.0.172 (#933)
1 parent 6308f5a commit 9349bbd

File tree

3 files changed

+27
-19
lines changed

3 files changed

+27
-19
lines changed

Cargo.lock

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

wycheproof2blb/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## UNRELEASED
8+
### Changed
9+
- Pin upper version of `serde` to <1.0.172 to work around [serde-rs/serde#2538] ([#933])
10+
11+
[#933]: https://github.com/RustCrypto/utils/pull/933
12+
[serde-rs/serde#2538]: https://github.com/serde-rs/serde/issues/2538
13+
714
## 0.1.0 (2021-12-07)
815
- Initial release

wycheproof2blb/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,6 @@ edition = "2018"
1212
[dependencies]
1313
blobby = { version = "0.3.1", path = "../blobby" }
1414
hex = "0.4"
15-
serde = { version = "1.0.103", features = ["derive"] }
15+
# Pin upper version of serde to work around https://github.com/serde-rs/serde/issues/2538
16+
serde = { version = "1.0.103, <1.0.172", features = ["derive"] }
1617
serde_json = "1"

0 commit comments

Comments
 (0)