From 73b0ac07021e36d20a70870e449b27241cb3bbb0 Mon Sep 17 00:00:00 2001 From: Adam Date: Sun, 13 Oct 2019 23:57:42 +0000 Subject: [PATCH] A small fix for the example set up of SSL (#119) * openssl is missing in the dependencies --- content/docs/server.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/docs/server.md b/content/docs/server.md index fb2a558..919ed8d 100644 --- a/content/docs/server.md +++ b/content/docs/server.md @@ -55,6 +55,7 @@ for `rust-tls` integration and `ssl` is for `openssl`. ```toml [dependencies] actix-web = { version = "{{< actix-version "actix-web" >}}", features = ["ssl"] } +openssl = { version="0.10" } ``` {{< include-example example="server" file="ssl.rs" section="ssl" >}}