Skip to content

Commit

Permalink
chore: correct futures-util dep specs
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede committed Sep 16, 2023
1 parent 2a074dd commit 600dda5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions actix-cors/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ actix-utils = "3"
actix-web = { version = "4", default-features = false }

derive_more = "0.99.7"
futures-util = { version = "0.3.7", default-features = false }
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
log = "0.4"
once_cell = "1"
smallvec = "1.6.1"
smallvec = "1"

[dev-dependencies]
actix-web = { version = "4", default-features = false, features = ["macros"] }
Expand Down
2 changes: 1 addition & 1 deletion actix-protobuf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ all-features = true
[dependencies]
actix-web = { version = "4", default-features = false }
derive_more = "0.99.7"
futures-util = { version = "0.3.7", default-features = false }
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
prost = { version = "0.12", default-features = false }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion actix-web-httpauth/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ actix-web = { version = "4.1", default-features = false }

base64 = "0.21"
futures-core = "0.3.7"
futures-util = { version = "0.3.7", default-features = false, features = ["std"] }
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
log = "0.4"
pin-project-lite = "0.2.7"

Expand Down

0 comments on commit 600dda5

Please sign in to comment.