diff --git a/ntex-io/Cargo.toml b/ntex-io/Cargo.toml index 750ea00e..93ad4b91 100644 --- a/ntex-io/Cargo.toml +++ b/ntex-io/Cargo.toml @@ -43,6 +43,5 @@ async_std = { version = "1", package = "async-std", optional = true } [dev-dependencies] ntex = "0.5.0-b.5" -futures = "0.3" rand = "0.8" env_logger = "0.9" diff --git a/ntex/CHANGES.md b/ntex/CHANGES.md index 7c8bf8b4..906f69c7 100644 --- a/ntex/CHANGES.md +++ b/ntex/CHANGES.md @@ -1,6 +1,10 @@ # Changes -## [0.5.0-b.10] - 2021-12-30 +## [0.5.0-b.8] - 2021-12-xx + +* Update cookie 0.16 + +## [0.5.0-b.7] - 2021-12-30 * Update ntex-io to 0.1.0-b.10 diff --git a/ntex/Cargo.toml b/ntex/Cargo.toml index ec91fa43..99692a68 100644 --- a/ntex/Cargo.toml +++ b/ntex/Cargo.toml @@ -57,7 +57,7 @@ ntex-io = { version = "0.1.0-b.10", features = ["tokio-traits"] } base64 = "0.13" bitflags = "1.3" -derive_more = "0.99.14" +derive_more = "0.99" fxhash = "0.2.1" futures-core = { version = "0.3", default-features = false, features = ["alloc"] } futures-sink = { version = "0.3", default-features = false, features = ["alloc"] } @@ -67,7 +67,7 @@ nanorand = { version = "0.6.1", default-features = false, features = ["std", "wy polling = "2.2.0" pin-project-lite = "0.2" regex = { version = "1.5.4", default-features = false, features = ["std"] } -sha-1 = "0.9" +sha-1 = "0.10" slab = "0.4" serde = { version = "1.0", features=["derive"] } socket2 = "0.4" @@ -86,7 +86,7 @@ percent-encoding = "2.1" serde_json = "1.0" serde_urlencoded = "0.7" url-pkg = { version = "2.1", package = "url", optional = true } -coo-kie = { version = "0.15", package = "cookie", optional = true } +coo-kie = { version = "0.16", package = "cookie", optional = true } # openssl tls-openssl = { version="0.10", package = "openssl", optional = true } @@ -101,7 +101,7 @@ flate2 = { version = "1.0.22", optional = true } [dev-dependencies] env_logger = "0.9" rand = "0.8" -time = "0.2" +time = "0.3" futures = "0.3" tls-openssl = { version="0.10", package = "openssl" } tls-rustls = { version = "0.20", package="rustls", features = ["dangerous_configuration"] }