From bfeddf5d15ddaa9937ceeba04678ad6c4a4e8aea Mon Sep 17 00:00:00 2001 From: Martin Fischer Date: Tue, 30 Mar 2021 10:51:29 +0200 Subject: upgrade to hyper 0.14 --- Cargo.toml | 12 ++++++------ examples/form/Cargo.toml | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ab7ba5d..f28c39b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sputnik" -version = "0.3.5" +version = "0.3.6" authors = ["Martin Fischer "] license = "MIT" description = "A lightweight layer on top of hyper to facilitate building web applications." @@ -15,20 +15,20 @@ keywords = ["hyper", "web", "cookie", "hmac"] json = ["serde_json"] [dependencies] -hyper = "0.13" -cookie = { version = "0.14", features = ["percent-encode"] } +hyper = "0.14" +cookie = { version = "0.15", features = ["percent-encode"] } serde = { version = "1.0", features = ["derive"] } serde_urlencoded = "0.7.0" base64 = "0.13" hmac = "0.10" httpdate = "0.3.2" mime = "0.3" -rand = "0.7.3" +rand = "0.8" sha2 = "0.9" time = "0.2" thiserror = "1.0" -async-trait = "0.1.42" -serde_json = { version = "1.0.61", optional = true } +async-trait = "0.1" +serde_json = { version = "1.0", optional = true } [package.metadata.docs.rs] all-features = true diff --git a/examples/form/Cargo.toml b/examples/form/Cargo.toml index 6f899df..c6eb1c3 100644 --- a/examples/form/Cargo.toml +++ b/examples/form/Cargo.toml @@ -8,8 +8,8 @@ publish = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -hyper = "0.13" +hyper = { version = "0.14", features = ["full"] } sputnik = {path = "../../"} serde = { version = "1.0", features = ["derive"] } -tokio = { version = "0.2", features = ["full"] } +tokio = { version = "1", features = ["full"] } thiserror = "1.0" \ No newline at end of file -- cgit v1.2.3