diff --git a/actix-codec/CHANGES.md b/actix-codec/CHANGES.md index 353e6bb7..0a8bbb13 100644 --- a/actix-codec/CHANGES.md +++ b/actix-codec/CHANGES.md @@ -1,6 +1,8 @@ # Changes ## Unreleased - 2020-xx-xx + +## 0.3.0-beta.1 - 2020-08-19 * Use `.advance()` instead of `.split_to()`. * Upgrade `tokio-util` to `0.3`. * Improve `BytesCodec` `.encode()` performance diff --git a/actix-codec/Cargo.toml b/actix-codec/Cargo.toml index 8b14dd70..b508ad29 100644 --- a/actix-codec/Cargo.toml +++ b/actix-codec/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-codec" -version = "0.2.0" +version = "0.3.0-beta.1" authors = ["Nikolay Kim "] description = "Utilities for encoding and decoding frames" keywords = ["network", "framework", "async", "futures"] @@ -10,7 +10,6 @@ documentation = "https://docs.rs/actix-codec/" categories = ["network-programming", "asynchronous"] license = "MIT OR Apache-2.0" edition = "2018" -workspace = ".." [lib] name = "actix_codec" @@ -21,7 +20,7 @@ bitflags = "1.2.1" bytes = "0.5.2" futures-core = { version = "0.3.4", default-features = false } futures-sink = { version = "0.3.4", default-features = false } -tokio = { version = "0.2.5", default-features = false } -tokio-util = { version = "0.3.1", default-features = false, features = ["codec"] } log = "0.4" pin-project = "0.4.17" +tokio = { version = "0.2.5", default-features = false } +tokio-util = { version = "0.3.1", default-features = false, features = ["codec"] } diff --git a/actix-utils/CHANGES.md b/actix-utils/CHANGES.md index 7c9ddd17..7f6b3d81 100644 --- a/actix-utils/CHANGES.md +++ b/actix-utils/CHANGES.md @@ -2,6 +2,7 @@ ## Unreleased - 2020-xx-xx +## 2.0.0-beta.1 - 2020-08-19 * Upgrade `tokio-util` to `0.3`. * Remove unsound custom Cell and use `std::cell::RefCell` instead, as well as `actix-service`. * Rename method to correctly spelled `LocalWaker::is_registered`. diff --git a/actix-utils/Cargo.toml b/actix-utils/Cargo.toml index f0a89165..2a8d595e 100644 --- a/actix-utils/Cargo.toml +++ b/actix-utils/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "actix-utils" -version = "1.0.6" +version = "2.0.0-beta.1" authors = ["Nikolay Kim "] -description = "Actix utils - various actix net related services" +description = "Actix utils - various Actix net related services" keywords = ["network", "framework", "async", "futures"] homepage = "https://actix.rs" repository = "https://github.com/actix/actix-net.git" @@ -16,15 +16,15 @@ name = "actix_utils" path = "src/lib.rs" [dependencies] -actix-service = "1.0.1" -actix-rt = "1.0.0" -actix-codec = "0.2.0" -bitflags = "1.2" +actix-codec = "0.3.0-beta.1" +actix-rt = "1.1.1" +actix-service = "1.0.6" +bitflags = "1.2.1" bytes = "0.5.3" either = "1.5.3" futures-channel = { version = "0.3.4", default-features = false } futures-sink = { version = "0.3.4", default-features = false } futures-util = { version = "0.3.4", default-features = false } -pin-project = "0.4.17" log = "0.4" +pin-project = "0.4.17" slab = "0.4"