diff --git a/actix-codec/CHANGES.md b/actix-codec/CHANGES.md index c8b7fbe3..cd4424d0 100644 --- a/actix-codec/CHANGES.md +++ b/actix-codec/CHANGES.md @@ -1,6 +1,7 @@ # Changes ## Unreleased - 2020-xx-xx +* Upgrade `pin-project` to `1.0`. ## 0.3.0 - 2020-08-23 * No changes from beta 2. diff --git a/actix-codec/Cargo.toml b/actix-codec/Cargo.toml index f834fdaf..1214945a 100644 --- a/actix-codec/Cargo.toml +++ b/actix-codec/Cargo.toml @@ -21,6 +21,6 @@ bytes = "0.5.2" futures-core = { version = "0.3.4", default-features = false } futures-sink = { version = "0.3.4", default-features = false } log = "0.4" -pin-project = "0.4.17" +pin-project = "1.0.0" tokio = { version = "0.2.5", default-features = false } tokio-util = { version = "0.3.1", default-features = false, features = ["codec"] } diff --git a/actix-service/CHANGES.md b/actix-service/CHANGES.md index 011ac65e..82481f46 100644 --- a/actix-service/CHANGES.md +++ b/actix-service/CHANGES.md @@ -1,7 +1,7 @@ # Changes ## Unreleased - 2020-xx-xx - +* Upgrade `pin-project` to `1.0`. ## 1.0.6 - 2020-08-09 diff --git a/actix-service/Cargo.toml b/actix-service/Cargo.toml index 7c73e9bf..1505873b 100644 --- a/actix-service/Cargo.toml +++ b/actix-service/Cargo.toml @@ -18,7 +18,7 @@ path = "src/lib.rs" [dependencies] futures-util = "0.3.1" -pin-project = "0.4.17" +pin-project = "1.0.0" [dev-dependencies] actix-rt = "1.0.0" diff --git a/actix-utils/CHANGES.md b/actix-utils/CHANGES.md index fe7aca31..22b7c7bf 100644 --- a/actix-utils/CHANGES.md +++ b/actix-utils/CHANGES.md @@ -1,6 +1,7 @@ # Changes ## Unreleased - 2020-xx-xx +* Upgrade `pin-project` to `1.0`. ## 2.0.0 - 2020-08-23 * No changes from beta 1. diff --git a/actix-utils/Cargo.toml b/actix-utils/Cargo.toml index e253545a..7f47f359 100644 --- a/actix-utils/Cargo.toml +++ b/actix-utils/Cargo.toml @@ -26,5 +26,5 @@ 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 } log = "0.4" -pin-project = "0.4.17" +pin-project = "1.0.0" slab = "0.4"