diff --git a/README.md b/README.md index c25d6f53d..efbb72e6d 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,15 @@ Actix web is licensed under the [Apache-2.0 license](http://opensource.org/licen * Multipart streams * Middlewares +## Usage + +To use `actix-web`, add this to your `Cargo.toml`: + +```toml +[dependencies] +actix-web = { git = "https://github.com/actix/actix-web" } +``` + ## HTTP/2 ### Usage @@ -38,15 +47,6 @@ rust-openssl supports alpn. actix-web = { git = "https://github.com/actix/actix-web", features=["alpn"] } ``` -## Usage - -To use `actix-web`, add this to your `Cargo.toml`: - -```toml -[dependencies] -actix-web = { git = "https://github.com/actix/actix-web" } -``` - ## Example * [Basic](https://github.com/actix/actix-web/tree/master/examples/basic.rs)