From 9a35484d9de72fad2b444b7df29b3941d0480d11 Mon Sep 17 00:00:00 2001 From: Erik Hollensbe Date: Wed, 16 Feb 2022 16:12:41 -0800 Subject: [PATCH] TLS dependencies for previous commit Signed-off-by: Erik Hollensbe --- Cargo.toml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 50bf67a..aca3bf1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ratpack" -version = "0.1.1" -edition = "2018" +version = "0.1.2" +edition = "2021" description = "ratpack is a HTTP framework designed around simplicity and ease-of-use" authors = ["Erik Hollensbe ", "Adam Ierymenko "] license = "BSD-3-Clause" @@ -13,6 +13,8 @@ hyper = { version = "^0.14", features = [ "http1", "http2", "server", "runtime", http = "^0.2" async-recursion = "^1" tokio = { version = "^1", features = [ "full" ] } +tokio-rustls = "^0.23" +webpki = "^0.22" [dev-dependencies] log = "^0.4"