From 210cfd9add5c4c73c02cb31a1c1336bb2dc3e7d0 Mon Sep 17 00:00:00 2001 From: Toru Kobayashi Date: Wed, 8 Apr 2020 22:28:28 +0900 Subject: [PATCH] fix: missing a dependency (#169) * fix: missing a dependency * chore: sort the order of dependencies --- content/docs/http2.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/docs/http2.md b/content/docs/http2.md index 9622ef7..bd07d0d 100644 --- a/content/docs/http2.md +++ b/content/docs/http2.md @@ -18,6 +18,7 @@ weight: 250 ```toml [dependencies] actix-web = { version = "{{< actix-version "actix-web" >}}", features = ["openssl"] } +actix-rt = "1.0.0" openssl = { version = "0.10", features = ["v110"] } ``` {{< include-example example="http2" file="main.rs" section="main" >}}