mirror of https://github.com/fafhrd91/actix-web
Merge branch 'master' into refactor/files
This commit is contained in:
commit
3c59c98cf6
|
@ -103,7 +103,7 @@ tinyvec = { version = "1", features = ["alloc"] }
|
|||
|
||||
[dev-dependencies]
|
||||
actix = "0.10.0"
|
||||
actix-http = { version = "2.0.0-beta.4", features = ["actors"] }
|
||||
actix-http = { version = "2.0.0", features = ["actors"] }
|
||||
rand = "0.7"
|
||||
env_logger = "0.7"
|
||||
serde_derive = "1.0"
|
||||
|
|
|
@ -13,12 +13,11 @@ Actix http
|
|||
## Example
|
||||
|
||||
```rust
|
||||
// see examples/framed_hello.rs for complete list of used crates.
|
||||
use std::{env, io};
|
||||
|
||||
use actix_http::{HttpService, Response};
|
||||
use actix_server::Server;
|
||||
use futures::future;
|
||||
use futures_util::future;
|
||||
use http::header::HeaderValue;
|
||||
use log::info;
|
||||
|
||||
|
|
Loading…
Reference in New Issue