mirror of
https://github.com/fafhrd91/actix-net
synced 2024-11-24 00:01:11 +01:00
Merge branch 'master' of github.com:actix/actix-net
This commit is contained in:
commit
62e429cb0c
@ -2,7 +2,7 @@
|
|||||||
name = "actix-net"
|
name = "actix-net"
|
||||||
version = "0.3.0"
|
version = "0.3.0"
|
||||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||||
description = "Actix net - framework for the compisible network services for Rust"
|
description = "Actix net - framework for the composable network services for Rust"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
keywords = ["network", "framework", "async", "futures"]
|
keywords = ["network", "framework", "async", "futures"]
|
||||||
homepage = "https://actix.rs"
|
homepage = "https://actix.rs"
|
||||||
|
@ -176,7 +176,7 @@ impl<T: ?Sized> ServiceExt for T where T: Service {}
|
|||||||
/// Creates new `Service` values.
|
/// Creates new `Service` values.
|
||||||
///
|
///
|
||||||
/// Acts as a service factory. This is useful for cases where new `Service`
|
/// Acts as a service factory. This is useful for cases where new `Service`
|
||||||
/// values must be produced. One case is a TCP servier listener. The listner
|
/// values must be produced. One case is a TCP server listener. The listener
|
||||||
/// accepts new TCP streams, obtains a new `Service` value using the
|
/// accepts new TCP streams, obtains a new `Service` value using the
|
||||||
/// `NewService` trait, and uses that new `Service` value to process inbound
|
/// `NewService` trait, and uses that new `Service` value to process inbound
|
||||||
/// requests on that new TCP stream.
|
/// requests on that new TCP stream.
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
* Update `derive_more` to 0.15
|
* Update `derive_more` to 0.15
|
||||||
|
* Update `parking_lot` to 0.9
|
||||||
|
|
||||||
## [0.1.1] - 2019-06-05
|
## [0.1.1] - 2019-06-05
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ path = "src/lib.rs"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
derive_more = "0.15"
|
derive_more = "0.15"
|
||||||
futures = "0.1.25"
|
futures = "0.1.25"
|
||||||
parking_lot = "0.8"
|
parking_lot = "0.9"
|
||||||
lazy_static = "1.2"
|
lazy_static = "1.2"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
num_cpus = "1.10"
|
num_cpus = "1.10"
|
||||||
|
Loading…
Reference in New Issue
Block a user