diff --git a/actix-macros/Cargo.toml b/actix-macros/Cargo.toml index 75ac8b7229..303568d507 100644 --- a/actix-macros/Cargo.toml +++ b/actix-macros/Cargo.toml @@ -16,12 +16,12 @@ edition = "2018" proc-macro = true [dependencies] -quote = "1.0.3" -syn = { version = "^1", features = ["full"] } +quote = "1" +syn = { version = "1", features = ["full"] } [dev-dependencies] -actix-rt = "2.0.0" +actix-rt = "2" -futures-util = { version = "0.3.7", default-features = false } +futures-util = { version = "0.3.17", default-features = false } rustversion = "1" trybuild = "1" diff --git a/actix-service/Cargo.toml b/actix-service/Cargo.toml index ccd2005e09..5a0252db59 100644 --- a/actix-service/Cargo.toml +++ b/actix-service/Cargo.toml @@ -17,11 +17,11 @@ name = "actix_service" path = "src/lib.rs" [dependencies] -futures-core = { version = "0.3.7", default-features = false } +futures-core = { version = "0.3.17", default-features = false } paste = "1" pin-project-lite = "0.2" [dev-dependencies] actix-rt = "2" actix-utils = "3" -futures-util = { version = "0.3.7", default-features = false } +futures-util = { version = "0.3.17", default-features = false } diff --git a/actix-tls/Cargo.toml b/actix-tls/Cargo.toml index 56591f35da..9aef48c7df 100755 --- a/actix-tls/Cargo.toml +++ b/actix-tls/Cargo.toml @@ -72,8 +72,8 @@ actix-codec = "0.5" actix-rt = "2.2" actix-server = "2" bytes = "1" -env_logger = "0.9" -futures-util = { version = "0.3.7", default-features = false, features = ["sink"] } +env_logger = "0.10" +futures-util = { version = "0.3.17", default-features = false, features = ["sink"] } log = "0.4" rcgen = "0.10" rustls-pemfile = "1" diff --git a/actix-utils/Cargo.toml b/actix-utils/Cargo.toml index bd3eb48096..3ee199a2b5 100644 --- a/actix-utils/Cargo.toml +++ b/actix-utils/Cargo.toml @@ -21,6 +21,6 @@ pin-project-lite = "0.2" local-waker = "0.1" [dev-dependencies] -actix-rt = "2.0.0" -futures-util = { version = "0.3.7", default-features = false } +actix-rt = "2" +futures-util = { version = "0.3.17", default-features = false } static_assertions = "1.1" diff --git a/local-channel/Cargo.toml b/local-channel/Cargo.toml index 52d88c3a49..f9424cccce 100644 --- a/local-channel/Cargo.toml +++ b/local-channel/Cargo.toml @@ -12,9 +12,9 @@ license = "MIT OR Apache-2.0" edition = "2018" [dependencies] -futures-core = { version = "0.3.7", default-features = false } -futures-sink = { version = "0.3.7", default-features = false } -futures-util = { version = "0.3.7", default-features = false } +futures-core = "0.3.17" +futures-sink = "0.3.17" +futures-util = { version = "0.3.17", default-features = false } local-waker = "0.1" [dev-dependencies] diff --git a/local-waker/Cargo.toml b/local-waker/Cargo.toml index 20ff299bba..6a0b44cd77 100644 --- a/local-waker/Cargo.toml +++ b/local-waker/Cargo.toml @@ -6,8 +6,8 @@ authors = [ "Nikolay Kim ", "Rob Ede ", ] -keywords = ["waker", "local", "futures", "no-std"] repository = "https://github.com/actix/actix-net.git" +keywords = ["waker", "local", "futures", "no-std"] categories = ["asynchronous", "no-std"] license = "MIT OR Apache-2.0" edition = "2018"