aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml12
-rw-r--r--examples/form/Cargo.toml4
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 <martin@push-f.com>"]
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