mirror of
https://github.com/fafhrd91/actix-net
synced 2025-03-20 16:05:18 +01:00
prep actix-testing release
This commit is contained in:
parent
8be5f773f4
commit
5469d8c910
@ -1,4 +1,4 @@
|
|||||||
# Actix net [](https://travis-ci.org/actix/actix-net) [](https://codecov.io/gh/actix/actix-net) [](https://crates.io/crates/actix-net) [](https://gitter.im/actix/actix?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
# Actix net [](https://travis-ci.org/actix/actix-net) [](https://codecov.io/gh/actix/actix-net) [](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
|
Actix net - framework for composable network services
|
||||||
|
|
||||||
|
58
actix-testing/CHANGES.md
Normal file
58
actix-testing/CHANGES.md
Normal file
@ -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
|
@ -2,33 +2,20 @@
|
|||||||
name = "actix-testing"
|
name = "actix-testing"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||||
description = "Actix test server"
|
description = "Actix testing utils"
|
||||||
keywords = ["network", "framework", "async", "futures"]
|
keywords = ["network", "framework", "async", "futures"]
|
||||||
homepage = "https://actix.rs"
|
homepage = "https://actix.rs"
|
||||||
repository = "https://github.com/actix/actix-net.git"
|
repository = "https://github.com/actix/actix-net.git"
|
||||||
documentation = "https://docs.rs/actix-testing/"
|
documentation = "https://docs.rs/actix-testing/"
|
||||||
categories = ["network-programming", "asynchronous"]
|
categories = ["network-programming", "asynchronous"]
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
|
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
workspace = ".."
|
workspace = ".."
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
|
||||||
features = ["ssl", "tls", "rust-tls"]
|
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "actix_testing"
|
name = "actix_testing"
|
||||||
path = "src/lib.rs"
|
path = "src/lib.rs"
|
||||||
|
|
||||||
[features]
|
|
||||||
default = []
|
|
||||||
|
|
||||||
# openssl
|
|
||||||
ssl = ["openssl", "actix-server/ssl"]
|
|
||||||
|
|
||||||
# rustls
|
|
||||||
rust-tls = ["rustls", "tokio-rustls", "webpki", "webpki-roots"]
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
actix-rt = "0.2.1"
|
actix-rt = "0.2.1"
|
||||||
actix-server = "0.6.0"
|
actix-server = "0.6.0"
|
||||||
@ -40,12 +27,3 @@ net2 = "0.2"
|
|||||||
futures = "0.1"
|
futures = "0.1"
|
||||||
tokio-tcp = "0.1"
|
tokio-tcp = "0.1"
|
||||||
tokio-reactor = "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 }
|
|
||||||
|
9
actix-testing/README.md
Normal file
9
actix-testing/README.md
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
# Actix test utilities [[](https://crates.io/crates/actix-testint) [](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
|
Loading…
x
Reference in New Issue
Block a user