Skip to content

Commit

Permalink
Set min version of serde to 1.0.184 (#1202)
Browse files Browse the repository at this point in the history
  • Loading branch information
newpavlov authored Aug 21, 2023
1 parent 5b15318 commit 65b8d71
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 23 deletions.
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 0 additions & 7 deletions serdect/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,6 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.2.1 (2023-08-19)
### Changed
- Pin upper version of `serde` to <1.0.172 to work around [serde-rs/serde#2538] ([#1201])

[#1201]: https://github.com/RustCrypto/formats/pull/1201
[serde-rs/serde#2538]: https://github.com/serde-rs/serde/issues/2538

## 0.2.0 (2023-02-26)
### Changed
- MSRV 1.60 ([#802])
Expand Down
5 changes: 2 additions & 3 deletions serdect/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ rust-version = "1.60"

[dependencies]
base16ct = { version = "0.2", default-features = false }
# Pin upper version of serde to work around https://github.com/serde-rs/serde/issues/2538
serde = { version = "1.0.96, <1.0.172", default-features = false }
serde = { version = "1.0.184", default-features = false }

# optional features
zeroize = { version = "1", optional = true, default-features = false }
Expand All @@ -27,7 +26,7 @@ bincode = "1"
ciborium = "0.2"
hex-literal = "0.4"
proptest = "1"
serde = { version = "1.0.119", default-features = false, features = ["derive"] }
serde = { version = "1.0.184", default-features = false, features = ["derive"] }
serde_json = "1"
serde-json-core = { version = "0.5", default-features = false, features = ["std"] }
toml = "0.7"
Expand Down
5 changes: 2 additions & 3 deletions tls_codec/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tls_codec"
version = "0.3.1"
version = "0.3.0"
authors = ["RustCrypto Developers"]
license = "Apache-2.0 OR MIT"
documentation = "https://docs.rs/tls_codec/"
Expand All @@ -19,8 +19,7 @@ zeroize = { version = "1.6", default-features = false, features = [
# optional dependencies
arbitrary = { version = "1", features = ["derive"], optional = true }
tls_codec_derive = { version = "=0.3.0", path = "./derive", optional = true }
# Pin upper version of serde to work around https://github.com/serde-rs/serde/issues/2538
serde = { version = "1.0.144, <1.0.172", features = ["derive"], optional = true }
serde = { version = "1.0.184", features = ["derive"], optional = true }

[dev-dependencies]
criterion = "0.5"
Expand Down
2 changes: 1 addition & 1 deletion x509-cert/test-support/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ readme = "README.md"

[dependencies]
# Pin upper version of serde to work around https://github.com/serde-rs/serde/issues/2538
serde = { version = "1, <1.0.172", features = ["derive"] }
serde = { version = "1.0.184", features = ["derive"] }
serde_json = "1"
tempfile = "3"

0 comments on commit 65b8d71

Please sign in to comment.