From 29bb44902921d69dc9b5e78d7650a03b1f7b50fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Garillot?= <4142+huitseeker@users.noreply.github.com> Date: Tue, 6 Sep 2022 20:58:33 -0700 Subject: [PATCH] chore(deps) Update the Mysten-infra pointer (MystenLabs/narwhal#908) Co-authored-by: huitseeker --- narwhal/consensus/Cargo.toml | 2 +- narwhal/executor/Cargo.toml | 6 +++--- narwhal/network/Cargo.toml | 2 +- narwhal/node/Cargo.toml | 6 +++--- narwhal/primary/Cargo.toml | 6 +++--- narwhal/storage/Cargo.toml | 2 +- narwhal/types/Cargo.toml | 2 +- narwhal/worker/Cargo.toml | 4 ++-- 8 files changed, 15 insertions(+), 15 deletions(-) diff --git a/narwhal/consensus/Cargo.toml b/narwhal/consensus/Cargo.toml index 67c076f47cb73..ba17e1a66f528 100644 --- a/narwhal/consensus/Cargo.toml +++ b/narwhal/consensus/Cargo.toml @@ -13,7 +13,7 @@ bytes = "1.2.1" match_opt = "0.1.2" rand = { version = "0.8.5", optional = true } serde = { version = "1.0.144", features = ["derive"] } -store = { git = "https://github.com/mystenlabs/mysten-infra.git", package = "typed-store", rev = "44ef8a4dfd773038ff331c3034239a6a121b3242" } +store = { git = "https://github.com/mystenlabs/mysten-infra.git", package = "typed-store", rev = "352091e92070c2ecfcccad444361a78249ecfe59" } thiserror = "1.0.34" tokio = { version = "1.20.1", features = ["sync"] } tracing = "0.1.36" diff --git a/narwhal/executor/Cargo.toml b/narwhal/executor/Cargo.toml index 9c806c565ede1..1415e4ff4ea11 100644 --- a/narwhal/executor/Cargo.toml +++ b/narwhal/executor/Cargo.toml @@ -28,9 +28,9 @@ storage = { path = "../storage" } itertools = "0.10.3" types = { path = "../types" } -mysten-network = { git = "https://github.com/mystenlabs/mysten-infra.git", rev = "44ef8a4dfd773038ff331c3034239a6a121b3242" } +mysten-network = { git = "https://github.com/mystenlabs/mysten-infra.git", rev = "352091e92070c2ecfcccad444361a78249ecfe59" } -store = { git = "https://github.com/mystenlabs/mysten-infra.git", package = "typed-store", rev = "44ef8a4dfd773038ff331c3034239a6a121b3242" } +store = { git = "https://github.com/mystenlabs/mysten-infra.git", package = "typed-store", rev = "352091e92070c2ecfcccad444361a78249ecfe59" } workspace-hack = { version = "0.1", path = "../workspace-hack" } match_opt = "0.1.2" @@ -41,4 +41,4 @@ tempfile = "3.3.0" primary = { path = "../primary" } test_utils = { path = "../test_utils" } types = { path = "../types" } -telemetry-subscribers = { git = "https://github.com/mystenlabs/mysten-infra.git", rev = "44ef8a4dfd773038ff331c3034239a6a121b3242" } +telemetry-subscribers = { git = "https://github.com/mystenlabs/mysten-infra.git", rev = "352091e92070c2ecfcccad444361a78249ecfe59" } diff --git a/narwhal/network/Cargo.toml b/narwhal/network/Cargo.toml index f1ef8e8c967f3..1c341946adbd9 100644 --- a/narwhal/network/Cargo.toml +++ b/narwhal/network/Cargo.toml @@ -24,7 +24,7 @@ types = { path = "../types" } crypto = { path = "../crypto" } serde = "1.0.144" -mysten-network = { git = "https://github.com/mystenlabs/mysten-infra.git", rev = "44ef8a4dfd773038ff331c3034239a6a121b3242" } +mysten-network = { git = "https://github.com/mystenlabs/mysten-infra.git", rev = "352091e92070c2ecfcccad444361a78249ecfe59" } workspace-hack = { version = "0.1", path = "../workspace-hack" } eyre = "0.6.8" diff --git a/narwhal/node/Cargo.toml b/narwhal/node/Cargo.toml index 1e8110fe51127..8daf443e65a54 100644 --- a/narwhal/node/Cargo.toml +++ b/narwhal/node/Cargo.toml @@ -15,10 +15,10 @@ clap = "2.34" dhat = { version = "0.3.0", optional = true } futures = "0.3.24" multiaddr = "0.14.0" -mysten-network = { git = "https://github.com/mystenlabs/mysten-infra.git", rev = "44ef8a4dfd773038ff331c3034239a6a121b3242" } +mysten-network = { git = "https://github.com/mystenlabs/mysten-infra.git", rev = "352091e92070c2ecfcccad444361a78249ecfe59" } rand = "0.8.5" -store = { git = "https://github.com/mystenlabs/mysten-infra.git", package = "typed-store", rev = "44ef8a4dfd773038ff331c3034239a6a121b3242" } -telemetry-subscribers = { git = "https://github.com/mystenlabs/mysten-infra.git", rev = "44ef8a4dfd773038ff331c3034239a6a121b3242" } +store = { git = "https://github.com/mystenlabs/mysten-infra.git", package = "typed-store", rev = "352091e92070c2ecfcccad444361a78249ecfe59" } +telemetry-subscribers = { git = "https://github.com/mystenlabs/mysten-infra.git", rev = "352091e92070c2ecfcccad444361a78249ecfe59" } thiserror = "1.0.34" tokio = { version = "1.20.1", features = ["full"] } tokio-stream = "0.1.9" diff --git a/narwhal/primary/Cargo.toml b/narwhal/primary/Cargo.toml index 6d9bbab10f21e..61eb57bf96fac 100644 --- a/narwhal/primary/Cargo.toml +++ b/narwhal/primary/Cargo.toml @@ -41,9 +41,9 @@ crypto = { path = "../crypto" } network = { path = "../network" } types = { path = "../types" } storage = { path = "../storage" } -mysten-network = { git = "https://github.com/mystenlabs/mysten-infra.git", rev = "44ef8a4dfd773038ff331c3034239a6a121b3242" } +mysten-network = { git = "https://github.com/mystenlabs/mysten-infra.git", rev = "352091e92070c2ecfcccad444361a78249ecfe59" } -store = { git = "https://github.com/mystenlabs/mysten-infra.git", package = "typed-store", rev = "44ef8a4dfd773038ff331c3034239a6a121b3242" } +store = { git = "https://github.com/mystenlabs/mysten-infra.git", package = "typed-store", rev = "352091e92070c2ecfcccad444361a78249ecfe59" } workspace-hack = { version = "0.1", path = "../workspace-hack" } anemo = { git = "https://github.com/mystenlabs/anemo.git", rev = "6278d0fa78147a49ff2cb9dd2e45e763886be0a0" } @@ -58,7 +58,7 @@ mockall = "0.11.2" node = { path = "../node" } proptest = "1.0.0" tempfile = "3.3.0" -telemetry-subscribers = { git = "https://github.com/mystenlabs/mysten-infra.git", rev = "44ef8a4dfd773038ff331c3034239a6a121b3242" } +telemetry-subscribers = { git = "https://github.com/mystenlabs/mysten-infra.git", rev = "352091e92070c2ecfcccad444361a78249ecfe59" } test_utils = { path = "../test_utils" } thiserror = "1.0.34" tracing = "0.1.36" diff --git a/narwhal/storage/Cargo.toml b/narwhal/storage/Cargo.toml index 64daa6f67703b..13868410b49f8 100644 --- a/narwhal/storage/Cargo.toml +++ b/narwhal/storage/Cargo.toml @@ -10,7 +10,7 @@ publish = false dashmap = "5.4.0" fastcrypto = { git = "https://github.com/MystenLabs/fastcrypto", rev = "c022a2ae23ca7cc2778293fd3b1db42e8cd02d3b", package = "fastcrypto" } futures = "0.3.24" -store = { git = "https://github.com/mystenlabs/mysten-infra.git", package = "typed-store", rev = "44ef8a4dfd773038ff331c3034239a6a121b3242" } +store = { git = "https://github.com/mystenlabs/mysten-infra.git", package = "typed-store", rev = "352091e92070c2ecfcccad444361a78249ecfe59" } thiserror = "1.0.34" tokio = { version = "1.20.1", features = ["sync", "rt", "macros"] } tokio-util = { version = "0.7.3", features = ["codec"] } diff --git a/narwhal/types/Cargo.toml b/narwhal/types/Cargo.toml index 0ad9162b715d7..206d65389e057 100644 --- a/narwhal/types/Cargo.toml +++ b/narwhal/types/Cargo.toml @@ -24,7 +24,7 @@ roaring = "0.10.0" serde = { version = "1.0.144", features = ["derive"] } serde_with = "2.0.0" signature = "1.6.0" -store = { git = "https://github.com/mystenlabs/mysten-infra.git", package = "typed-store", rev = "44ef8a4dfd773038ff331c3034239a6a121b3242" } +store = { git = "https://github.com/mystenlabs/mysten-infra.git", package = "typed-store", rev = "352091e92070c2ecfcccad444361a78249ecfe59" } thiserror = "1.0.34" tokio = { version = "1.20.1", features = ["sync", "rt", "macros"] } tokio-util = { version = "0.7.3", features = ["codec"] } diff --git a/narwhal/worker/Cargo.toml b/narwhal/worker/Cargo.toml index d12116640a135..e1ec99bf00e42 100644 --- a/narwhal/worker/Cargo.toml +++ b/narwhal/worker/Cargo.toml @@ -28,10 +28,10 @@ crypto = { path = "../crypto" } network = { path = "../network" } primary = { path = "../primary" } types = { path = "../types" } -mysten-network = { git = "https://github.com/mystenlabs/mysten-infra.git", rev = "44ef8a4dfd773038ff331c3034239a6a121b3242" } +mysten-network = { git = "https://github.com/mystenlabs/mysten-infra.git", rev = "352091e92070c2ecfcccad444361a78249ecfe59" } prometheus = "0.13.1" -store = { git = "https://github.com/mystenlabs/mysten-infra.git", package = "typed-store", rev = "44ef8a4dfd773038ff331c3034239a6a121b3242" } +store = { git = "https://github.com/mystenlabs/mysten-infra.git", package = "typed-store", rev = "352091e92070c2ecfcccad444361a78249ecfe59" } workspace-hack = { version = "0.1", path = "../workspace-hack" } [dev-dependencies]