Skip to content

Commit 65b8d71

Browse files
authored
Set min version of serde to 1.0.184 (#1202)
1 parent 5b15318 commit 65b8d71

File tree

5 files changed

+14
-23
lines changed

5 files changed

+14
-23
lines changed

Cargo.lock

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

serdect/CHANGELOG.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,6 @@ 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-
## 0.2.1 (2023-08-19)
8-
### Changed
9-
- Pin upper version of `serde` to <1.0.172 to work around [serde-rs/serde#2538] ([#1201])
10-
11-
[#1201]: https://github.com/RustCrypto/formats/pull/1201
12-
[serde-rs/serde#2538]: https://github.com/serde-rs/serde/issues/2538
13-
147
## 0.2.0 (2023-02-26)
158
### Changed
169
- MSRV 1.60 ([#802])

serdect/Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ rust-version = "1.60"
1616

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

2221
# optional features
2322
zeroize = { version = "1", optional = true, default-features = false }
@@ -27,7 +26,7 @@ bincode = "1"
2726
ciborium = "0.2"
2827
hex-literal = "0.4"
2928
proptest = "1"
30-
serde = { version = "1.0.119", default-features = false, features = ["derive"] }
29+
serde = { version = "1.0.184", default-features = false, features = ["derive"] }
3130
serde_json = "1"
3231
serde-json-core = { version = "0.5", default-features = false, features = ["std"] }
3332
toml = "0.7"

tls_codec/Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tls_codec"
3-
version = "0.3.1"
3+
version = "0.3.0"
44
authors = ["RustCrypto Developers"]
55
license = "Apache-2.0 OR MIT"
66
documentation = "https://docs.rs/tls_codec/"
@@ -19,8 +19,7 @@ zeroize = { version = "1.6", default-features = false, features = [
1919
# optional dependencies
2020
arbitrary = { version = "1", features = ["derive"], optional = true }
2121
tls_codec_derive = { version = "=0.3.0", path = "./derive", optional = true }
22-
# Pin upper version of serde to work around https://github.com/serde-rs/serde/issues/2538
23-
serde = { version = "1.0.144, <1.0.172", features = ["derive"], optional = true }
22+
serde = { version = "1.0.184", features = ["derive"], optional = true }
2423

2524
[dev-dependencies]
2625
criterion = "0.5"

x509-cert/test-support/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ readme = "README.md"
1313

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

0 commit comments

Comments
 (0)