1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-01-18 13:01:49 +01:00

prepare actix-connect release

This commit is contained in:
Nikolay Kim 2019-03-14 22:39:49 -07:00
parent 720230b852
commit b290273e81
3 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,6 @@
# Changes # Changes
## [0.1.0] - 2019-03-xx ## [0.1.0] - 2019-03-14
* Refactor resolver and connector services * Refactor resolver and connector services

View File

@ -6,7 +6,7 @@ description = "Actix Connector - tcp connector service"
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-net/" documentation = "https://docs.rs/actix-connect/"
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"] exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]

View File

@ -263,6 +263,7 @@ mod tests {
.and_then(move |res: Vec<_>| { .and_then(move |res: Vec<_>| {
assert_eq!(res, vec![1, 2, 3]); assert_eq!(res, vec![1, 2, 3]);
let _ = tx_stop.send(()); let _ = tx_stop.send(());
actix_rt::System::current().stop();
Ok(()) Ok(())
}) })
})); }));