mirror of
https://github.com/fafhrd91/actix-net
synced 2024-11-27 20:12:58 +01:00
prep alpha.1 release
This commit is contained in:
parent
ae4394c0f2
commit
5265714f68
@ -22,8 +22,8 @@ openssl = ["tokio-openssl"]
|
|||||||
rustls = ["tokio-rustls"]
|
rustls = ["tokio-rustls"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tokio-io = "0.2.0-alpha.6"
|
tokio-io = "=0.2.0-alpha.6"
|
||||||
tokio-net = "0.2.0-alpha.6"
|
tokio-net = { version = "=0.2.0-alpha.6", features = ["tcp", "uds"] }
|
||||||
tokio-openssl = { version = "0.4.0-alpha.6", optional = true }
|
tokio-openssl = { version = "0.4.0-alpha.6", optional = true }
|
||||||
#tokio-rustls = { version = "0.12.0-alpha.8", optional = true }
|
#tokio-rustls = { version = "0.12.0-alpha.8", optional = true }
|
||||||
tokio-rustls = { git = "https://github.com/quininer/tokio-rustls.git", branch = "tokio-0.2", optional = true }
|
tokio-rustls = { git = "https://github.com/quininer/tokio-rustls.git", branch = "tokio-0.2", optional = true }
|
||||||
|
@ -24,7 +24,7 @@ path = "src/lib.rs"
|
|||||||
default = []
|
default = []
|
||||||
nativetls = ["native-tls", "tokio-tls"]
|
nativetls = ["native-tls", "tokio-tls"]
|
||||||
openssl = ["open-ssl", "tokio-openssl", "actix-server-config/openssl"]
|
openssl = ["open-ssl", "tokio-openssl", "actix-server-config/openssl"]
|
||||||
rustls = ["rust-tls", "tokio-rustls", "webpki", "webpki-roots", "actix-server-config/rustls"]
|
#rustls = ["rust-tls", "tokio-rustls", "webpki", "webpki-roots", "actix-server-config/rustls"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
actix-rt = "1.0.0-alpha.1"
|
actix-rt = "1.0.0-alpha.1"
|
||||||
@ -40,7 +40,7 @@ slab = "0.4"
|
|||||||
|
|
||||||
tokio = "0.2.0-alpha.6"
|
tokio = "0.2.0-alpha.6"
|
||||||
tokio-io = "0.2.0-alpha.6"
|
tokio-io = "0.2.0-alpha.6"
|
||||||
tokio-net = { version = "0.2.0-alpha.6", features = ["signal"] }
|
tokio-net = { version = "0.2.0-alpha.6", features = ["signal", "tcp", "uds"] }
|
||||||
tokio-timer = "0.3.0-alpha.6"
|
tokio-timer = "0.3.0-alpha.6"
|
||||||
|
|
||||||
# unix domain sockets
|
# unix domain sockets
|
||||||
|
@ -28,4 +28,4 @@ pin-project = "0.4.5"
|
|||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = "0.2.0-alpha.6"
|
tokio = "0.2.0-alpha.6"
|
||||||
actix-rt = "0.2"
|
# actix-rt = "1.0.0-alpha.1"
|
||||||
|
@ -4,8 +4,6 @@ use std::rc::Rc;
|
|||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
use std::task::{self, Context, Poll};
|
use std::task::{self, Context, Poll};
|
||||||
|
|
||||||
use futures::future::{ready, Ready};
|
|
||||||
|
|
||||||
mod and_then;
|
mod and_then;
|
||||||
mod apply;
|
mod apply;
|
||||||
mod apply_cfg;
|
mod apply_cfg;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
## [0.2.0] - 2019-??-??
|
## [0.2.0] - 2019-11-21
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user