diff --git a/README.md b/README.md index ed5c35fb..154fd337 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ ## Documentation & community resources * [Documentation](https://docs.rs/ntex) -* Minimum supported Rust version: 1.45 or later +* Minimum supported Rust version: 1.46 or later ## License diff --git a/ntex-codec/CHANGES.md b/ntex-codec/CHANGES.md index cced7bc4..38407c5a 100644 --- a/ntex-codec/CHANGES.md +++ b/ntex-codec/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [0.4.1] - 2021-04-04 + +* Use Either from ntex-service + ## [0.4.0] - 2021-02-23 * Migrate to tokio 1.x diff --git a/ntex-codec/Cargo.toml b/ntex-codec/Cargo.toml index 259f2cc7..5c874ae2 100644 --- a/ntex-codec/Cargo.toml +++ b/ntex-codec/Cargo.toml @@ -22,7 +22,7 @@ ntex-service = "0.1.7" futures-core = { version = "0.3.13", default-features = false, features = ["alloc"] } futures-sink = { version = "0.3.13", default-features = false, features = ["alloc"] } log = "0.4" -tokio = { version = "1", default-features=false } +tokio = { version = "1", default-features = false } [dev-dependencies] ntex = "0.3.13" diff --git a/ntex-rt/Cargo.toml b/ntex-rt/Cargo.toml index 065c0da8..3f97de7e 100644 --- a/ntex-rt/Cargo.toml +++ b/ntex-rt/Cargo.toml @@ -17,4 +17,4 @@ path = "src/lib.rs" [dependencies] ntex-service = "0.1.7" -tokio = { version = "1", default-features=false, features = ["rt", "net", "time", "signal", "sync"] } +tokio = { version = "1", default-features = false, features = ["rt", "net", "time", "signal", "sync"] } diff --git a/ntex-service/CHANGES.md b/ntex-service/CHANGES.md index 73463c36..69d9d83d 100644 --- a/ntex-service/CHANGES.md +++ b/ntex-service/CHANGES.md @@ -1,10 +1,10 @@ # Changes -## [0.1.7] - 2021-04-02 +## [0.1.7] - 2021-04-03 * drop futures-util dependency -* add custom Ready and Lazy futures +* add custom Ready,Lazy,Either futures ## [0.1.6] - 2021-03-26 diff --git a/ntex-service/Cargo.toml b/ntex-service/Cargo.toml index e51a47c2..2352c69c 100644 --- a/ntex-service/Cargo.toml +++ b/ntex-service/Cargo.toml @@ -19,4 +19,4 @@ path = "src/lib.rs" pin-project-lite = "0.2.4" [dev-dependencies] -ntex = "0.3.1" \ No newline at end of file +ntex = "0.3.13" diff --git a/ntex/Cargo.toml b/ntex/Cargo.toml index 2a27d9e0..4e2f17d4 100644 --- a/ntex/Cargo.toml +++ b/ntex/Cargo.toml @@ -74,7 +74,7 @@ serde_urlencoded = "0.7" socket2 = "0.4" url-pkg = { version = "2.1", package = "url", optional = true } coo-kie = { version = "0.15", package = "cookie", optional = true } -tokio = { version = "1", default-features=false, features = ["sync"] } +tokio = { version = "1", default-features = false, features = ["sync"] } # openssl open-ssl = { version="0.10", package = "openssl", optional = true }