diff --git a/fe2o3-amqp/Cargo.toml b/fe2o3-amqp/Cargo.toml index 79d4199e..d6f653a8 100644 --- a/fe2o3-amqp/Cargo.toml +++ b/fe2o3-amqp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fe2o3-amqp" -version = "0.1.2" +version = "0.1.3" edition = "2021" description = "An implementation of AMQP1.0 protocol based on serde and tokio" license = "MIT/Apache-2.0" @@ -18,12 +18,12 @@ rustdoc-args = ["--cfg", "docsrs"] [features] ## dev defaults -default = [ - "acceptor", - "rustls", - "native-tls", - "transaction", -] +# default = [ +# "acceptor", +# "rustls", +# "native-tls", +# "transaction", +# ] transaction = ["fe2o3-amqp-types/transaction", "uuid"] diff --git a/fe2o3-amqp/Changelog.md b/fe2o3-amqp/Changelog.md index c2c59c9d..2571fa94 100644 --- a/fe2o3-amqp/Changelog.md +++ b/fe2o3-amqp/Changelog.md @@ -1,5 +1,9 @@ # Change Log +## 0.1.3 + +1. #66. Avoided copying partial payload into the buffer for multi-frame delivery. In a non-scientific test, this improved performance for large content from around 1.2s to 0.8s. + ## 0.1.2 1. Changed `serde_amqp` version requirement to "^0.1.1"