~nickbp/tokio-scgi

bcf2992131e6acea14b95749d0700306d75a1c90 — Nick Parker 2 years ago 7c1ebe9
Bump to tokio 1.0, bump version
3 files changed, 6 insertions(+), 7 deletions(-)

M Cargo.toml
M examples/client.rs
M examples/server.rs
M Cargo.toml => Cargo.toml +4 -4
@@ 1,6 1,6 @@
[package]
name = "tokio-scgi"
version = "0.2.2"
version = "0.2.3"
authors = ["Nick Parker <nick@nickbp.com>"]
license = "MIT"
edition = "2018"


@@ 14,10 14,10 @@ repository = "https://github.com/nickbp/tokio-scgi"
exclude = ["README.md", "images/"]

[dependencies]
bytes = "0.6"
bytes = "1.0"
futures = "0.3"
tokio = { version = "0.3", features = ["io-util", "macros", "net", "rt-multi-thread"] }
tokio-util = { version = "0.5", features = ["codec"] }
tokio = { version = "1.0", features = ["io-util", "macros", "net", "rt-multi-thread"] }
tokio-util = { version = "0.6", features = ["codec"] }

[dev-dependencies]
proptest = "0.10"

M examples/client.rs => examples/client.rs +1 -1
@@ 6,8 6,8 @@ use std::env;
use std::io::{Error, ErrorKind};
use std::net::ToSocketAddrs;
use std::path::Path;
use tokio::io::{AsyncRead, AsyncWrite};
use tokio::net::{TcpStream, UnixStream};
use tokio::prelude::*;
use tokio_scgi::client::{SCGICodec, SCGIRequest};
use tokio_util::codec::Framed;


M examples/server.rs => examples/server.rs +1 -2
@@ 8,9 8,8 @@ use std::io::{Error, ErrorKind};
use std::net::ToSocketAddrs;
use std::path::Path;
use std::time::SystemTime;
use tokio;
use tokio::io::{AsyncRead, AsyncWrite};
use tokio::net::{TcpListener, UnixListener};
use tokio::prelude::*;
use tokio::task;
use tokio_scgi::server::{SCGICodec, SCGIRequest};
use tokio_util::codec::Framed;