Skip to content

Commit

Permalink
chore(deps): Switch sui to the mysten-infra released packages
Browse files Browse the repository at this point in the history
  • Loading branch information
huitseeker committed Sep 8, 2022
1 parent f1a2994 commit 7093357
Show file tree
Hide file tree
Showing 21 changed files with 90 additions and 86 deletions.
88 changes: 46 additions & 42 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/sui-benchmark/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ rocksdb = "0.19.0"
serde_with = { version = "1.14.0", features = ["hex"] }
tracing = "0.1.36"
tracing-subscriber = { version = "0.3.15", features = ["time", "registry", "env-filter"] }
telemetry-subscribers = { git = "https://github.com/MystenLabs/mysten-infra", rev = "d96230a9272c322a7eefac49708aadfff1eed77e" }
telemetry-subscribers = "0.1.0"
clap = { version = "3.1.17", features = ["derive"] }
prometheus = "0.13.1"
multiaddr = "0.14.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/sui-cluster-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ tokio = { version = "1.20.1", features = ["full"] }
tracing = { version = "0.1.36", features = ["log"] }
clap = { version = "3.1.14", features = ["derive"] }
reqwest = { version = "0.11.11", features = ["blocking", "json"] }
telemetry-subscribers = { git = "https://github.com/MystenLabs/mysten-infra", rev = "d96230a9272c322a7eefac49708aadfff1eed77e" }
telemetry-subscribers = "0.1.0"
async-trait = "0.1.57"
anyhow = { version = "1.0.64", features = ["backtrace"] }
bcs = "0.1.3"
Expand Down
8 changes: 4 additions & 4 deletions crates/sui-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ move-bytecode-utils = { git = "https://github.com/move-language/move", rev = "e1
move-core-types = { git = "https://github.com/move-language/move", rev = "e1e647b73dbd3652aabb2020728a4a517c26e28e", features = ["address20"] }
move-vm-runtime = { git = "https://github.com/move-language/move", rev = "e1e647b73dbd3652aabb2020728a4a517c26e28e" }

typed-store = { git = "https://github.com/MystenLabs/mysten-infra", rev = "d96230a9272c322a7eefac49708aadfff1eed77e"}
typed-store-macros = { git = "https://github.com/MystenLabs/mysten-infra", rev = "d96230a9272c322a7eefac49708aadfff1eed77e"}
mysten-network = { git = "https://github.com/MystenLabs/mysten-infra", rev = "d96230a9272c322a7eefac49708aadfff1eed77e" }
typed-store = "0.1.0"
typed-store-derive = "0.1.0"
mysten-network = "0.1.0"

narwhal-config = { git = "https://github.com/MystenLabs/narwhal", rev = "842a611a0a58dd378a904d85f79b4edbbbc7b137", package = "config" }
narwhal-consensus = { git = "https://github.com/MystenLabs/narwhal", rev = "842a611a0a58dd378a904d85f79b4edbbbc7b137", package = "consensus" }
Expand All @@ -69,7 +69,7 @@ move-package = { git = "https://github.com/move-language/move", rev = "e1e647b73
serde-reflection = "0.3.6"
serde_yaml = "0.8.26"
pretty_assertions = "1.2.1"
telemetry-subscribers = { git = "https://github.com/MystenLabs/mysten-infra", rev = "d96230a9272c322a7eefac49708aadfff1eed77e" }
telemetry-subscribers = "0.1.0"

test-fuzz = "3.0.4"
test-utils = { path = "../test-utils" }
Expand Down
2 changes: 1 addition & 1 deletion crates/sui-core/src/authority/authority_store_tables.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use sui_types::batch::{SignedBatch, TxSequenceNumber};
use typed_store::rocks::DBMap;
use typed_store::traits::TypedStoreDebug;

use typed_store_macros::DBMapUtils;
use typed_store_derive::DBMapUtils;
#[derive(DBMapUtils)]
pub struct AuthorityStoreTables<S> {
/// This is a map between the object (ID, version) and the latest state of the object, namely the
Expand Down
2 changes: 1 addition & 1 deletion crates/sui-core/src/checkpoints/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ use typed_store::{
rocks::{DBBatch, DBMap},
Map,
};
use typed_store_macros::DBMapUtils;
use typed_store_derive::DBMapUtils;

use crate::checkpoints::causal_order_effects::CausalOrder;
use crate::{
Expand Down
2 changes: 1 addition & 1 deletion crates/sui-core/src/epoch/epoch_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use typed_store::rocks::DBMap;
use typed_store::traits::TypedStoreDebug;

use typed_store::Map;
use typed_store_macros::DBMapUtils;
use typed_store_derive::DBMapUtils;

#[derive(DBMapUtils)]
pub struct EpochStore {
Expand Down
2 changes: 1 addition & 1 deletion crates/sui-faucet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ sui-node = { path = "../sui-node" }
sui-json-rpc-types= { path = "../sui-json-rpc-types" }
sui-types = { path = "../sui-types" }
sui-config = { path = "../sui-config" }
telemetry-subscribers = { git = "https://github.com/MystenLabs/mysten-infra", rev = "d96230a9272c322a7eefac49708aadfff1eed77e" }
telemetry-subscribers = "0.1.0"
workspace-hack = { path = "../workspace-hack"}

[dev-dependencies]
Expand Down
Loading

0 comments on commit 7093357

Please sign in to comment.