Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set min version of serde to 1.0.185 #56

Merged
merged 2 commits into from
Aug 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions Cargo.lock

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

6 changes: 6 additions & 0 deletions jose-b64/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ 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.1.2 (2023-08-21)
### Changed
- Set min version of `serde` to 1.0.185 ([#56])

[#56]: https://github.com/RustCrypto/JOSE/pull/56

## 0.1.1 (2023-08-19)
### Changed
- Pin upper version of `serde` to <1.0.172 to work around [serde-rs/serde#2538] ([#55])
Expand Down
3 changes: 1 addition & 2 deletions jose-b64/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ base64ct = { version = "1.6.0", default-features = false, features = ["alloc"] }

# optional dependencies
zeroize = { version = "1.6.0", default-features = false, optional = true, features = ["alloc", "serde"] }
# Pin upper version of serde to work around https://github.com/serde-rs/serde/issues/2538
serde = { version = "1.0.160, <1.0.172", default-features = false, optional = true, features = ["alloc", "derive"] }
serde = { version = "1.0.185", default-features = false, optional = true, features = ["alloc", "derive"] }
serde_json = { version = "1.0.96", default-features = false, optional = true, features = ["alloc"] }
subtle = { version = "2.5.0", default-features = false, optional = true }

Expand Down
6 changes: 6 additions & 0 deletions jose-jwa/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ 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.1.2 (2023-08-21)
### Changed
- Set min version of `serde` to 1.0.185 ([#56])

[#56]: https://github.com/RustCrypto/JOSE/pull/56

## 0.1.1 (2023-08-19)
### Changed
- Pin upper version of `serde` to <1.0.172 to work around [serde-rs/serde#2538] ([#55])
Expand Down
3 changes: 1 addition & 2 deletions jose-jwa/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ edition = "2021"
rust-version = "1.65"

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

[dev-dependencies]
serde_json = "1.0.96"
Expand Down
6 changes: 6 additions & 0 deletions jose-jwk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ 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.1.2 (2023-08-21)
### Changed
- Set min version of `serde` to 1.0.185 ([#56])

[#56]: https://github.com/RustCrypto/JOSE/pull/56

## 0.1.1 (2023-08-19)
### Changed
- Pin upper version of `serde` to <1.0.172 to work around [serde-rs/serde#2538] ([#55])
Expand Down
3 changes: 1 addition & 2 deletions jose-jwk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ crypto = ["p256", "p384", "rsa"]
[dependencies]
jose-b64 = { version = "0.1", default-features = false, features = ["secret"], path = "../jose-b64" }
jose-jwa = { version = "0.1", path = "../jose-jwa" }
# Pin upper version of serde to work around https://github.com/serde-rs/serde/issues/2538
serde = { version = "1.0.160, <1.0.172", default-features = false, features = ["alloc", "derive"] }
serde = { version = "1.0.185", default-features = false, features = ["alloc", "derive"] }
zeroize = { version = "1.6.0", default-features = false, features = ["alloc"] }

# optional dependencies
Expand Down
6 changes: 6 additions & 0 deletions jose-jws/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ 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.1.2 (2023-08-21)
### Changed
- Set min version of `serde` to 1.0.185 ([#56])

[#56]: https://github.com/RustCrypto/JOSE/pull/56

## 0.1.1 (2023-08-19)
### Changed
- Pin upper version of `serde` to <1.0.172 to work around [serde-rs/serde#2538] ([#55])
Expand Down
3 changes: 1 addition & 2 deletions jose-jws/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ rust-version = "1.65"
jose-b64 = { version = "0.1", default-features = false, features = ["json"], path = "../jose-b64" }
jose-jwa = { version = "0.1", path = "../jose-jwa" }
jose-jwk = { version = "0.1", default-features = false, path = "../jose-jwk" }
# Pin upper version of serde to work around https://github.com/serde-rs/serde/issues/2538
serde = { version = "1.0.160, <1.0.172", default-features = false, features = ["alloc", "derive"] }
serde = { version = "1.0.185", default-features = false, features = ["alloc", "derive"] }
serde_json = { version = "1.0.96", default-features = false }
rand_core = { version = "0.6.4", default-features = false }

Expand Down