Skip to content

Commit

Permalink
relaxed tokio-util version req
Browse files Browse the repository at this point in the history
  • Loading branch information
minghuaw committed Jul 10, 2022
1 parent 30a5ea9 commit 1c2e1a3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/protocol_test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ edition = "2021"
anyhow = "1"
serde = "1"
serde_json = "1"
fe2o3-amqp = { version = "0.0.31", path = "../../fe2o3-amqp", default-features = false, features = ["acceptor", "transaction"] }
fe2o3-amqp = { version = "0.0.32", path = "../../fe2o3-amqp", default-features = false, features = ["acceptor", "transaction"] }
# fe2o3-amqp = { version = "0.0.13", features = ["acceptor", "transaction"] }
tokio = { version = "1", features = ["net", "macros", "rt-multi-thread", "rt", "time"] }
tracing = "0.1.31"
Expand Down
4 changes: 2 additions & 2 deletions fe2o3-amqp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fe2o3-amqp"
version = "0.0.31"
version = "0.0.32"
edition = "2021"
description = "An implementation of AMQP1.0 protocol based on serde and tokio"
license = "MIT/Apache-2.0"
Expand Down Expand Up @@ -47,7 +47,7 @@ fe2o3-amqp-types = "0.0.30"

bytes = "1"
tokio = { version = "^1.16.1", features = ["io-util", "net", "rt", "macros"] }
tokio-util = { version = "=0.7.3", features = ["codec"] }
tokio-util = { version = "<=0.7.3", features = ["codec"] }
thiserror = "1"
serde = "1"
# erased-serde = "^0.3.16"
Expand Down
4 changes: 4 additions & 0 deletions fe2o3-amqp/Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 0.0.32

1. Relaxing `tokio-util` version requirement to `"<=0.7.3"

## 0.0.31

1. Somehow fixed #56 (which is sending multiple 10 MB messages in a row fails on qdrouterd) by
Expand Down

0 comments on commit 1c2e1a3

Please sign in to comment.