Skip to content

Commit

Permalink
chore: narrow tokio version range to account for RUSTSEC-2023-0005
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede committed Aug 18, 2024
1 parent 1574c3f commit a862d6b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion actix-hash/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ futures-core = "0.3.17"
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
local-channel = "0.1"
pin-project-lite = "0.2"
tokio = { version = "1.18.5", features = ["sync", "macros"] }
tokio = { version = "1.24.2", features = ["sync", "macros"] }
tracing = { version = "0.1.30", features = ["log"] }

blake2 = { package = "blake2", version = "0.10", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion actix-web-lab-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ actix-test = "0.1"
actix-web = "4"
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
rustversion = "1"
tokio = { version = "1.18.5", features = ["macros"] }
tokio = { version = "1.24.2", features = ["macros"] }
trybuild = "1"

[lints]
Expand Down
4 changes: 2 additions & 2 deletions actix-web-lab/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ serde = "1"
serde_html_form = "0.2"
serde_json = "1"
serde_path_to_error = "0.1"
tokio = { version = "1.23.1", features = ["sync", "macros"] }
tokio = { version = "1.24.2", features = ["sync", "macros"] }
tokio-stream = "0.1.1"
tracing = { version = "0.1.30", features = ["log"] }

Expand Down Expand Up @@ -109,7 +109,7 @@ serde = { version = "1", features = ["derive"] }
sha2 = "0.10"
static_assertions = "1.1"
time = { version = "0.3", features = ["formatting"] }
tokio = { version = "1.18.5", features = ["full"] }
tokio = { version = "1.24.2", features = ["full"] }
tokio-util = { version = "0.7", features = ["compat"] }

[[example]]
Expand Down

0 comments on commit a862d6b

Please sign in to comment.