diff --git a/http-client/Cargo.toml b/http-client/Cargo.toml index 8c4129174a..a24322b438 100644 --- a/http-client/Cargo.toml +++ b/http-client/Cargo.toml @@ -14,7 +14,7 @@ async-trait = "0.1" futures = { version = "0.3.14", default-features = false, features = ["std"] } hyper13-rustls = { package = "hyper-rustls", version = "0.21", optional = true } hyper14-rustls = { package = "hyper-rustls", version = "0.22", optional = true } -hyper14 = { package = "hyper", version = "0.14", features = ["client", "http1", "http2", "tcp"], optional = true } +hyper14 = { package = "hyper", version = "0.14.10", features = ["client", "http1", "http2", "tcp"], optional = true } hyper13 = { package = "hyper", version = "0.13", optional = true } jsonrpsee-types = { path = "../types", version = "0.3.0" } jsonrpsee-utils = { path = "../utils", version = "0.3.0", optional = true } diff --git a/http-server/Cargo.toml b/http-server/Cargo.toml index ef336f248c..259a3cb9db 100644 --- a/http-server/Cargo.toml +++ b/http-server/Cargo.toml @@ -11,7 +11,7 @@ documentation = "https://docs.rs/jsonrpsee-http-server" [dependencies] thiserror = "1" -hyper = { version = "0.14", features = ["server", "http1", "http2", "tcp"] } +hyper = { version = "0.14.10", features = ["server", "http1", "http2", "tcp"] } futures-channel = "0.3.14" futures-util = { version = "0.3.14", default-features = false } jsonrpsee-types = { path = "../types", version = "0.3.0" } diff --git a/test-utils/Cargo.toml b/test-utils/Cargo.toml index 6a902339a8..2dba6c16fa 100644 --- a/test-utils/Cargo.toml +++ b/test-utils/Cargo.toml @@ -11,7 +11,7 @@ edition = "2018" anyhow = "1" futures-channel = "0.3.14" futures-util = "0.3.14" -hyper = { version = "0.14", features = ["full"] } +hyper = { version = "0.14.10", features = ["full"] } log = "0.4" serde = { version = "1", default-features = false, features = ["derive"] } serde_json = "1" diff --git a/types/Cargo.toml b/types/Cargo.toml index f5ddb89ba2..86b4aa666b 100644 --- a/types/Cargo.toml +++ b/types/Cargo.toml @@ -19,4 +19,4 @@ serde = { version = "1", default-features = false, features = ["derive"] } serde_json = { version = "1", default-features = false, features = ["alloc", "raw_value", "std"] } thiserror = "1.0" soketto = "0.6" -hyper = "0.14" +hyper = "0.14.10" diff --git a/utils/Cargo.toml b/utils/Cargo.toml index 39f1103050..66565e7ea6 100644 --- a/utils/Cargo.toml +++ b/utils/Cargo.toml @@ -12,7 +12,7 @@ thiserror = { version = "1", optional = true } futures-channel = { version = "0.3.14", default-features = false, optional = true } futures-util = { version = "0.3.14", default-features = false, optional = true } hyper13 = { package = "hyper", version = "0.13", default-features = false, features = ["stream"], optional = true } -hyper14 = { package = "hyper", version = "0.14", default-features = false, features = ["stream"], optional = true } +hyper14 = { package = "hyper", version = "0.14.10", default-features = false, features = ["stream"], optional = true } jsonrpsee-types = { path = "../types", version = "0.3.0", optional = true } log = { version = "0.4", optional = true } rustc-hash = { version = "1", optional = true }