From 28652a3ba886148d94cf1ec209724701ef1a6caa Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Sat, 4 Nov 2017 12:36:37 -0700 Subject: [PATCH] update readme --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) 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)