From 5469d8c910f6e52ea5887066f10d1ba6a65f09ee Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Wed, 25 Sep 2019 09:26:12 +0600 Subject: [PATCH] prep actix-testing release --- README.md | 2 +- actix-testing/CHANGES.md | 58 ++++++++++++++++++++++++++++++++++++++++ actix-testing/Cargo.toml | 24 +---------------- actix-testing/README.md | 9 +++++++ 4 files changed, 69 insertions(+), 24 deletions(-) create mode 100644 actix-testing/CHANGES.md create mode 100644 actix-testing/README.md diff --git a/README.md b/README.md index 0b4cc7e6..99ecd5fc 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Actix net [![Build Status](https://travis-ci.org/actix/actix-net.svg?branch=master)](https://travis-ci.org/actix/actix-net) [![codecov](https://codecov.io/gh/actix/actix-net/branch/master/graph/badge.svg)](https://codecov.io/gh/actix/actix-net) [![crates.io](https://meritbadge.herokuapp.com/actix-net)](https://crates.io/crates/actix-net) [![Join the chat at https://gitter.im/actix/actix](https://badges.gitter.im/actix/actix.svg)](https://gitter.im/actix/actix?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) +# Actix net [![Build Status](https://travis-ci.org/actix/actix-net.svg?branch=master)](https://travis-ci.org/actix/actix-net) [![codecov](https://codecov.io/gh/actix/actix-net/branch/master/graph/badge.svg)](https://codecov.io/gh/actix/actix-net) [![Join the chat at https://gitter.im/actix/actix](https://badges.gitter.im/actix/actix.svg)](https://gitter.im/actix/actix?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) Actix net - framework for composable network services diff --git a/actix-testing/CHANGES.md b/actix-testing/CHANGES.md new file mode 100644 index 00000000..798dbf50 --- /dev/null +++ b/actix-testing/CHANGES.md @@ -0,0 +1,58 @@ +# Changes + +## [0.2.5] - 2019-0917 + +### Changed + +* Update serde_urlencoded to "0.6.1" + +### Fixed + +* Do not override current `System` + + +## [0.2.4] - 2019-07-18 + +* Update actix-server to 0.6 + +## [0.2.3] - 2019-07-16 + +* Add `delete`, `options`, `patch` methods to `TestServerRunner` + +## [0.2.2] - 2019-06-16 + +* Add .put() and .sput() methods + +## [0.2.1] - 2019-06-05 + +* Add license files + +## [0.2.0] - 2019-05-12 + +* Update awc and actix-http deps + +## [0.1.1] - 2019-04-24 + +* Always make new connection for http client + + +## [0.1.0] - 2019-04-16 + +* No changes + + +## [0.1.0-alpha.3] - 2019-04-02 + +* Request functions accept path #743 + + +## [0.1.0-alpha.2] - 2019-03-29 + +* Added TestServerRuntime::load_body() method + +* Update actix-http and awc libraries + + +## [0.1.0-alpha.1] - 2019-03-28 + +* Initial impl diff --git a/actix-testing/Cargo.toml b/actix-testing/Cargo.toml index a6083f07..3c101b13 100644 --- a/actix-testing/Cargo.toml +++ b/actix-testing/Cargo.toml @@ -2,33 +2,20 @@ name = "actix-testing" version = "0.1.0" authors = ["Nikolay Kim "] -description = "Actix test server" +description = "Actix testing utils" keywords = ["network", "framework", "async", "futures"] homepage = "https://actix.rs" repository = "https://github.com/actix/actix-net.git" documentation = "https://docs.rs/actix-testing/" categories = ["network-programming", "asynchronous"] license = "MIT/Apache-2.0" -exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"] edition = "2018" workspace = ".." -[package.metadata.docs.rs] -features = ["ssl", "tls", "rust-tls"] - [lib] name = "actix_testing" path = "src/lib.rs" -[features] -default = [] - -# openssl -ssl = ["openssl", "actix-server/ssl"] - -# rustls -rust-tls = ["rustls", "tokio-rustls", "webpki", "webpki-roots"] - [dependencies] actix-rt = "0.2.1" actix-server = "0.6.0" @@ -40,12 +27,3 @@ net2 = "0.2" futures = "0.1" tokio-tcp = "0.1" tokio-reactor = "0.1" - -# openssl -openssl = { version="0.10", optional = true } - -#rustls -rustls = { version = "^0.15", optional = true } -tokio-rustls = { version = "^0.9", optional = true } -webpki = { version = "0.19", optional = true } -webpki-roots = { version = "0.16", optional = true } diff --git a/actix-testing/README.md b/actix-testing/README.md new file mode 100644 index 00000000..cb217c61 --- /dev/null +++ b/actix-testing/README.md @@ -0,0 +1,9 @@ +# Actix test utilities [[![crates.io](https://meritbadge.herokuapp.com/actix-testing)](https://crates.io/crates/actix-testint) [![Join the chat at https://gitter.im/actix/actix](https://badges.gitter.im/actix/actix.svg)](https://gitter.im/actix/actix?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) + +## Documentation & community resources + +* [User Guide](https://actix.rs/docs/) +* [API Documentation](https://docs.rs/actix-testing/) +* [Chat on gitter](https://gitter.im/actix/actix) +* Cargo package: [actix-http-test](https://crates.io/crates/actix-testing) +* Minimum supported Rust version: 1.37 or later