Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
jbr committed Jul 20, 2021
1 parent c13fe06 commit 2a3903e
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion aws-lambda/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }

Expand Down
2 changes: 1 addition & 1 deletion client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
2 changes: 1 addition & 1 deletion conn-id/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion http/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion static/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions tokio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand All @@ -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" }
2 changes: 1 addition & 1 deletion websockets/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down

0 comments on commit 2a3903e

Please sign in to comment.