diff --git a/masq/Cargo.toml b/masq/Cargo.toml index 9da81d27d..df5dd558a 100644 --- a/masq/Cargo.toml +++ b/masq/Cargo.toml @@ -21,7 +21,7 @@ masq_lib = { path = "../masq_lib" } num = "0.4.0" regex = "1.5.4" thousands = "0.2.0" -websocket = {version = "0.26.2", default-features = false, features = ["sync"]} +websocket = {version = "0.26.5", default-features = false, features = ["sync"]} ctrlc = "3.2.1" [target.'cfg(not(target_os = "windows"))'.dependencies] diff --git a/masq_lib/Cargo.toml b/masq_lib/Cargo.toml index b871d2334..d307f72cf 100644 --- a/masq_lib/Cargo.toml +++ b/masq_lib/Cargo.toml @@ -24,7 +24,7 @@ serde_json = "1.0.74" tiny-hderive = "0.3.0" toml = "0.5.8" ethereum-types = "0.9.0" -websocket = {version = "0.26.2", default-features = false, features = ["sync"]} +websocket = {version = "0.26.5", default-features = false, features = ["sync"]} [features] no_test_share = [] diff --git a/multinode_integration_tests/Cargo.toml b/multinode_integration_tests/Cargo.toml index 674220dad..28ae85885 100644 --- a/multinode_integration_tests/Cargo.toml +++ b/multinode_integration_tests/Cargo.toml @@ -34,7 +34,7 @@ tiny-bip39 = "0.8.2" tiny-hderive = "0.3.0" uint = "0.9.1" web3 = {version = "0.11.0", default-features = false, features = ["http", "tls"]} -websocket = {version = "0.26.2", default-features = false, features = ["sync"]} +websocket = {version = "0.26.5", default-features = false, features = ["sync"]} [lib] name = "multinode_integration_tests_lib" diff --git a/node/Cargo.lock b/node/Cargo.lock index 86a081080..6b807f2bb 100644 --- a/node/Cargo.lock +++ b/node/Cargo.lock @@ -4510,9 +4510,9 @@ dependencies = [ [[package]] name = "websocket" -version = "0.26.2" +version = "0.26.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "723abe6b75286edc51d8ecabb38a2353f62a9e9b0588998b59111474f1dcd637" +checksum = "92aacab060eea423e4036820ddd28f3f9003b2c4d8048cbda985e5a14e18038d" dependencies = [ "bytes 0.4.12", "futures", @@ -4529,9 +4529,9 @@ dependencies = [ [[package]] name = "websocket-base" -version = "0.26.2" +version = "0.26.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "403f3fd505ff930da84156389639932955fb09705b3dccd1a3d60c8e7ff62776" +checksum = "49aec794b07318993d1db16156d5a9c750120597a5ee40c6b928d416186cb138" dependencies = [ "base64 0.10.1", "bitflags", diff --git a/node/Cargo.toml b/node/Cargo.toml index 44e752515..2f91d2caa 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -63,7 +63,7 @@ trust-dns = "0.17.0" trust-dns-resolver = "0.12.0" unindent = "0.1.7" web3 = {version = "0.11.0", default-features = false, features = ["http", "tls"]} -websocket = {version = "0.26.2", default-features = false, features = ["async", "sync"]} +websocket = {version = "0.26.5", default-features = false, features = ["async", "sync"]} secp256k1secrets = {package = "secp256k1", version = "0.17.2"} [target.'cfg(target_os = "macos")'.dependencies]