Skip to content

Commit

Permalink
9.0.3 (#246)
Browse files Browse the repository at this point in the history
* fix: rustls reexport for enable-rustls-ring (#244)
* fix: bytes_utils min version 0.1.3

---------

Co-authored-by: Lucas Kent <[email protected]>
  • Loading branch information
aembke and rukai authored May 1, 2024
1 parent fd8f35d commit 7689bda
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 9.0.3

* Fix `bytes_utils` min version
* Fix rustls reexports with `enable-rustls-ring`.

## 9.0.2

* Add `enable-rustls-ring` feature flag
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fred"
version = "9.0.2"
version = "9.0.3"
authors = ["Alec Embke <[email protected]>"]
edition = "2021"
description = "An async Redis client built on Tokio."
Expand All @@ -22,7 +22,7 @@ arc-swap = "1.7"
tokio = { version = "1.34", features = ["net", "sync", "rt", "rt-multi-thread", "macros"] }
tokio-util = { version = "0.7", features = ["codec"] }
bytes = "1.6"
bytes-utils = "0.1"
bytes-utils = "0.1.3"
futures = { version = "0.3", features = ["std"] }
parking_lot = "0.12"
redis-protocol = { version = "5.0.1", features = ["resp2", "resp3", "bytes"] }
Expand Down
8 changes: 4 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ pub extern crate bytes_utils;
#[cfg(feature = "enable-native-tls")]
#[cfg_attr(docsrs, doc(cfg(feature = "enable-native-tls")))]
pub extern crate native_tls;
#[cfg(feature = "enable-rustls")]
#[cfg_attr(docsrs, doc(cfg(feature = "enable-rustls")))]
#[cfg(any(feature = "enable-rustls", feature = "enable-rustls-ring"))]
#[cfg_attr(docsrs, doc(cfg(any(feature = "enable-rustls", feature = "enable-rustls-ring"))))]
pub extern crate rustls;
#[cfg(feature = "enable-rustls")]
#[cfg_attr(docsrs, doc(cfg(feature = "enable-rustls")))]
#[cfg(any(feature = "enable-rustls", feature = "enable-rustls-ring"))]
#[cfg_attr(docsrs, doc(cfg(any(feature = "enable-rustls", feature = "enable-rustls-ring"))))]
pub extern crate rustls_native_certs;
#[cfg(feature = "serde-json")]
pub extern crate serde_json;
Expand Down

0 comments on commit 7689bda

Please sign in to comment.