diff --git a/aws-lambda/Cargo.toml b/aws-lambda/Cargo.toml index 5985a832f9..f0165179b8 100644 --- a/aws-lambda/Cargo.toml +++ b/aws-lambda/Cargo.toml @@ -18,7 +18,7 @@ log = "0.4.14" serde = "1.0.126" serde_derive = "1.0.126" serde_json = "1.0.64" -tokio = { version = "1.8.1", features = ["rt", "net", "rt-multi-thread"], package = "tokio" } +tokio = { version = "1.8.2", features = ["rt", "net", "rt-multi-thread"], package = "tokio" } trillium = { path = "../trillium", version = "^0.1.0" } trillium-http = { path = "../http", version = "^0.1.0" } diff --git a/client/Cargo.toml b/client/Cargo.toml index feb2927afa..73102b0a1b 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -31,7 +31,7 @@ version = "^0.1.0" async-global-executor = "2.0.2" async-io = "1.6.0" env_logger = "0.9.0" -fastrand = "1.4.1" +fastrand = "1.5.0" trillium-rustls = { path = "../rustls" } trillium-smol = { path = "../smol/" } trillium-testing = { path = "../testing" } diff --git a/conn-id/Cargo.toml b/conn-id/Cargo.toml index 0f493e31d6..b0066df120 100644 --- a/conn-id/Cargo.toml +++ b/conn-id/Cargo.toml @@ -12,7 +12,7 @@ categories = ["web-programming::http-server", "web-programming"] [dependencies] extension-trait = "1.0.0" -fastrand = "1.4.1" +fastrand = "1.5.0" trillium = { path = "../trillium", version = "^0.1.0" } [dev-dependencies] diff --git a/http/Cargo.toml b/http/Cargo.toml index c8e71d9520..96fa65ee67 100644 --- a/http/Cargo.toml +++ b/http/Cargo.toml @@ -35,6 +35,6 @@ trillium-smol = { path = "../smol" } trillium-testing = { path = "../testing" } [dev-dependencies.tokio] -version = "1.8.1" +version = "1.8.2" features = ["rt", "net", "rt-multi-thread", "macros"] package = "tokio" diff --git a/static/Cargo.toml b/static/Cargo.toml index 547b86a653..3c25709ea9 100644 --- a/static/Cargo.toml +++ b/static/Cargo.toml @@ -35,7 +35,7 @@ version = "1.9.0" features = ["fs"] optional = true package = "tokio" -version = "1.8.1" +version = "1.8.2" [dev-dependencies] env_logger = "0.9.0" diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml index 87e7cd1be1..907991ee42 100644 --- a/tokio/Cargo.toml +++ b/tokio/Cargo.toml @@ -19,7 +19,7 @@ trillium-http = { path = "../http", version = "^0.1.0" } trillium-server-common = { path = "../server-common", version = "^0.1.0" } [dependencies.tokio] -version = "1.8.1" +version = "1.8.2" features = ["rt", "net", "rt-multi-thread", "time"] package = "tokio" @@ -29,5 +29,5 @@ signal-hook-tokio = { version = "0.3.0", features = ["futures-v0_3"] } [dev-dependencies] env_logger = "0.9.0" -tokio = { version = "1.8.1", features = ["full"], package = "tokio" } +tokio = { version = "1.8.2", features = ["full"], package = "tokio" } trillium-testing = { path = "../testing" } diff --git a/websockets/Cargo.toml b/websockets/Cargo.toml index a60a16a61e..c1547874b3 100644 --- a/websockets/Cargo.toml +++ b/websockets/Cargo.toml @@ -22,7 +22,7 @@ log = "0.4.14" pin-project = "1.0.7" serde = "1.0.126" serde_json = { version = "1.0.64", optional = true } -sha-1 = "0.9.6" +sha-1 = "0.9.7" stopper = "0.2.0" trillium = { path = "../trillium", version = "^0.1.0" } trillium-http = { path = "../http", version = "^0.1.0" }