diff --git a/Cargo.toml b/Cargo.toml index 7b33514f..f489c5c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,18 +1,3 @@ -[package] -name = "actix-net" -version = "0.3.0" -authors = ["Nikolay Kim "] -description = "Actix net - framework for the composable network services for Rust" -readme = "README.md" -keywords = ["network", "framework", "async", "futures"] -homepage = "https://actix.rs" -repository = "https://github.com/actix/actix-net.git" -documentation = "https://docs.rs/actix-net/" -categories = ["network-programming", "asynchronous"] -license = "MIT/Apache-2.0" -exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"] -edition = "2018" - [workspace] members = [ "actix-codec", @@ -28,17 +13,6 @@ members = [ "router", ] -[dev-dependencies] -actix-service = "0.4.0" -actix-codec = "0.1.1" -actix-rt = "0.2.0" -actix-server = { version="0.5.0", features=["ssl"] } -env_logger = "0.6" -futures = "0.1.25" -openssl = "0.10" -tokio-tcp = "0.1" -tokio-openssl = "0.3" - [patch.crates-io] actix-codec = { path = "actix-codec" } actix-connect = { path = "actix-connect" } diff --git a/actix-testing/CHANGES.md b/actix-testing/CHANGES.md index 3dfd22fb..7896c18e 100644 --- a/actix-testing/CHANGES.md +++ b/actix-testing/CHANGES.md @@ -1,5 +1,10 @@ # Changes +## [0.2.0] - 2019-10-14 + +* Upgrade actix-server and actix-server-config deps + + ## [0.1.0] - 2019-09-25 * Initial impl diff --git a/actix-testing/Cargo.toml b/actix-testing/Cargo.toml index b11e6455..eb9ac455 100644 --- a/actix-testing/Cargo.toml +++ b/actix-testing/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-testing" -version = "0.1.0" +version = "0.2.0" authors = ["Nikolay Kim "] description = "Actix testing utils" keywords = ["network", "framework", "async", "futures"] @@ -17,10 +17,10 @@ name = "actix_testing" path = "src/lib.rs" [dependencies] -actix-rt = "0.2.1" +actix-rt = "0.2.5" actix-server = "0.7.0" actix-server-config = "0.2.0" -actix-service = "0.4.0" +actix-service = "0.4.2" log = "0.4" net2 = "0.2"