diff --git a/Cargo.lock b/Cargo.lock index 287b161d6..c17707e6f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -9395,7 +9395,6 @@ version = "0.5.1" dependencies = [ "base64 0.21.7", "blake2", - "borsh", "digest 0.10.7", "hex", "lazy_static", @@ -9542,6 +9541,7 @@ name = "tari_indexer_lib" version = "0.5.1" dependencies = [ "async-trait", + "futures 0.3.30", "log", "rand", "serde", @@ -9995,6 +9995,7 @@ dependencies = [ name = "tari_transaction" version = "0.5.1" dependencies = [ + "indexmap 2.2.6", "rand", "serde", "tari_common_types", diff --git a/Cargo.toml b/Cargo.toml index aa927af14..b7f2b773a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -179,7 +179,7 @@ httpmock = "0.6.8" humantime = "2.1.0" humantime-serde = "1.1.1" include_dir = "0.7.2" -indexmap = "2.1.0" +indexmap = "2.2.6" indoc = "1.0.6" itertools = "0.11.0" lazy_static = "1.4.0" diff --git a/applications/tari_dan_app_utilities/Cargo.toml b/applications/tari_dan_app_utilities/Cargo.toml index 46955e54f..ffbc8b267 100644 --- a/applications/tari_dan_app_utilities/Cargo.toml +++ b/applications/tari_dan_app_utilities/Cargo.toml @@ -26,7 +26,7 @@ tari_transaction = { workspace = true } tari_validator_node_client = { workspace = true } tari_bor = { workspace = true, default-features = true } tari_indexer_lib = { workspace = true } -tari_networking = { workspace = true} +tari_networking = { workspace = true } tari_validator_node_rpc = { workspace = true } anyhow = { workspace = true } @@ -49,11 +49,11 @@ serde = { workspace = true, features = ["default", "derive"] } serde_json = { workspace = true } thiserror = { workspace = true } tokio = { workspace = true, features = [ - "default", - "macros", - "time", - "sync", - "rt-multi-thread", -]} + "default", + "macros", + "time", + "sync", + "rt-multi-thread", +] } tokio-stream = { workspace = true, features = ["sync"] } config = { workspace = true } diff --git a/applications/tari_dan_app_utilities/src/transaction_executor.rs b/applications/tari_dan_app_utilities/src/transaction_executor.rs index 24d5f5d79..e1904011f 100644 --- a/applications/tari_dan_app_utilities/src/transaction_executor.rs +++ b/applications/tari_dan_app_utilities/src/transaction_executor.rs @@ -76,7 +76,7 @@ where TTemplateProvider: TemplateProvider