-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: move pretty-env-logger to dev-deps and bump version * chore: bump versions * chore: update minimum required tokio versions * chore: update rustfmt.toml * chore: update ci rust version to 1.72.0, update changelog --------- Co-authored-by: Troy Benson <[email protected]> Co-authored-by: Tom Parker-Shemilt <[email protected]> Co-authored-by: xxai.art <[email protected]>
- Loading branch information
1 parent
b3f89b4
commit e190bdc
Showing
8 changed files
with
31 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "fred" | ||
version = "6.3.0" | ||
version = "6.3.1" | ||
authors = ["Alec Embke <[email protected]>"] | ||
edition = "2021" | ||
description = "An async Redis client built on Tokio." | ||
|
@@ -36,8 +36,8 @@ rustdoc-args = ["--cfg", "docsrs"] | |
[dependencies] | ||
arcstr = "1.1" | ||
arc-swap = "1.5" | ||
tokio = { version = "1", features = ["net", "sync", "rt", "rt-multi-thread", "macros"] } | ||
tokio-util = { version = "0.7", features = ["codec"] } | ||
tokio = { version = "1.19.0", features = ["net", "sync", "rt", "rt-multi-thread", "macros"] } | ||
tokio-util = { version = "0.7.1", features = ["codec"] } | ||
cfg-if = "1.0.0" | ||
bytes = "1.1" | ||
bytes-utils = "0.1" | ||
|
@@ -46,10 +46,9 @@ parking_lot = "0.12" | |
lazy_static = "1.4" | ||
redis-protocol = { version = "4.1", features = ["decode-mut"] } | ||
log = "0.4" | ||
pretty_env_logger = "0.4" | ||
float-cmp = "0.9" | ||
url = "2.3" | ||
tokio-stream = "0.1" | ||
tokio-stream = "0.1.1" | ||
sha-1 = "0.10" | ||
rand = "0.8" | ||
async-trait = "0.1" | ||
|
@@ -62,15 +61,16 @@ tracing-futures = { version = "0.2", optional = true } | |
nom = { version = "7.1", optional = true } | ||
serde_json = { version = "1", optional = true } | ||
tokio-rustls = { version = "0.24", optional = true } | ||
webpki = { package = "rustls-webpki", version = "0.100", features = ["alloc", "std"], optional = true } | ||
webpki = { package = "rustls-webpki", version = "0.101", features = ["alloc", "std"], optional = true } | ||
rustls-native-certs = { version = "0.6", optional = true } | ||
trust-dns-resolver = { version = "0.22", optional = true } | ||
trust-dns-resolver = { version = "0.23", optional = true } | ||
|
||
[dev-dependencies] | ||
prometheus = "0.12" | ||
base64 = "0.13" | ||
prometheus = "0.13" | ||
base64 = "0.21" | ||
subprocess = "0.2.7" | ||
serde = { version = "1.0", features = ["derive"] } | ||
pretty_env_logger = "0.5" | ||
|
||
[lib] | ||
doc = true | ||
|
@@ -129,4 +129,4 @@ replicas = [] | |
client-tracking = [] | ||
# Testing Features | ||
debug-ids = [] | ||
sentinel-tests = [] | ||
sentinel-tests = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM rust:1.69.0-slim-buster | ||
FROM rust:1.72.0-slim-buster | ||
|
||
WORKDIR /project | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM rust:1.69.0-slim-buster | ||
FROM rust:1.72.0-slim-buster | ||
|
||
WORKDIR /project | ||
|
||
|