Skip to content

Commit

Permalink
chore: upgrade dependancies (#6018)
Browse files Browse the repository at this point in the history
Description
---
Upgrades dependencies version
  • Loading branch information
SWvheerden authored Dec 6, 2023
1 parent cf66c51 commit 6d25ded
Show file tree
Hide file tree
Showing 24 changed files with 45 additions and 45 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions applications/minotari_app_grpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ edition = "2018"
tari_common_types = { path = "../../base_layer/common_types" }
tari_comms = { path = "../../comms/core" }
tari_core = { path = "../../base_layer/core" }
tari_crypto = { version = "0.19.1" }
tari_crypto = { version = "0.20" }
tari_script = { path = "../../infrastructure/tari_script" }
tari_utilities = { version = "0.6" }
tari_utilities = { version = "0.7" }

argon2 = { version = "0.4.1", features = ["std", "password-hash"] }
base64 = "0.13.0"
Expand Down
2 changes: 1 addition & 1 deletion applications/minotari_app_utilities/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ tari_common = { path = "../../common" }
tari_common_types = { path = "../../base_layer/common_types" }
tari_comms = { path = "../../comms/core" }
tari_features = { path = "../../common/tari_features"}
tari_utilities = { version = "0.6" }
tari_utilities = { version = "0.7" }

clap = { version = "3.2", features = ["derive", "env"] }
futures = { version = "^0.3.16", default-features = false, features = ["alloc"] }
Expand Down
4 changes: 2 additions & 2 deletions applications/minotari_console_wallet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ tari_common_types = { path = "../../base_layer/common_types" }
tari_comms = { path = "../../comms/core" }
tari_comms_dht = { path = "../../comms/dht" }
tari_contacts = { path = "../../base_layer/contacts" }
tari_crypto = { version = "0.19.1" }
tari_crypto = { version = "0.20" }
tari_key_manager = { path = "../../base_layer/key_manager" }
tari_libtor = { path = "../../infrastructure/libtor", optional = true }
tari_p2p = { path = "../../base_layer/p2p", features = ["auto-update"] }
tari_script = { path = "../../infrastructure/tari_script" }
tari_shutdown = { path = "../../infrastructure/shutdown" }
tari_utilities = { version = "0.6" }
tari_utilities = { version = "0.7" }
minotari_wallet = { path = "../../base_layer/wallet", features = ["bundled_sqlite"] }

# Uncomment for tokio tracing via tokio-console (needs "tracing" featurs)
Expand Down
2 changes: 1 addition & 1 deletion applications/minotari_merge_mining_proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ tari_common_types = { path = "../../base_layer/common_types" }
tari_comms = { path = "../../comms/core" }
tari_core = { path = "../../base_layer/core", default-features = false, features = ["transactions"] }
minotari_app_utilities = { path = "../minotari_app_utilities" }
tari_utilities = { version = "0.6" }
tari_utilities = { version = "0.7" }
minotari_node_grpc_client = { path = "../../clients/rust/base_node_grpc_client" }
minotari_wallet_grpc_client = { path = "../../clients/rust/wallet_grpc_client" }
minotari_app_grpc = { path = "../minotari_app_grpc" }
Expand Down
4 changes: 2 additions & 2 deletions applications/minotari_miner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ tari_common_types = { path = "../../base_layer/common_types" }
tari_comms = { path = "../../comms/core" }
minotari_app_utilities = { path = "../minotari_app_utilities" }
minotari_app_grpc = { path = "../minotari_app_grpc" }
tari_crypto = { version = "0.19.1" }
tari_utilities = { version = "0.6" }
tari_crypto = { version = "0.20" }
tari_utilities = { version = "0.7" }

base64 = "0.13.0"
borsh = "1.2"
Expand Down
4 changes: 2 additions & 2 deletions applications/minotari_node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ tari_comms = { path = "../../comms/core", features = ["rpc"] }
tari_common_types = { path = "../../base_layer/common_types" }
tari_comms_dht = { path = "../../comms/dht" }
tari_core = { path = "../../base_layer/core", default-features = false, features = ["transactions"] }
tari_crypto = { version = "0.19.1" }
tari_crypto = { version = "0.20" }
tari_libtor = { path = "../../infrastructure/libtor", optional = true }
tari_p2p = { path = "../../base_layer/p2p", features = ["auto-update"] }
tari_storage = {path="../../infrastructure/storage"}
tari_service_framework = { path = "../../base_layer/service_framework" }
tari_shutdown = { path = "../../infrastructure/shutdown" }
tari_utilities = { version = "0.6" }
tari_utilities = { version = "0.7" }

anyhow = "1.0.53"
async-trait = "0.1.52"
Expand Down
4 changes: 2 additions & 2 deletions base_layer/chat_ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ tari_common_types = { path = "../common_types" }
tari_contacts = { path = "../contacts" }
tari_p2p = { path = "../p2p" }
tari_shutdown = { path = "../../infrastructure/shutdown" }
tari_utilities = { version = "0.6" }
tari_utilities = { version = "0.7" }

libc = "0.2.65"
libsqlite3-sys = { version = "0.25.1", features = ["bundled"], optional = true }
Expand All @@ -32,7 +32,7 @@ crate-type = ["staticlib","cdylib"]
[dev-dependencies]
chrono = { version = "0.4.19", default-features = false }
rand = "0.8"
tari_crypto = { version = "0.19.1" }
tari_crypto = { version = "0.20" }

[build-dependencies]
cbindgen = "0.24.3"
Expand Down
4 changes: 2 additions & 2 deletions base_layer/common_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ version = "1.0.0-pre.0"
edition = "2018"

[dependencies]
tari_crypto = { version = "0.19.1" }
tari_utilities = { version = "0.6" }
tari_crypto = { version = "0.20" }
tari_utilities = { version = "0.7" }
tari_common = { path = "../../common" }


Expand Down
4 changes: 2 additions & 2 deletions base_layer/contacts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ tari_common_sqlite = { path = "../../common_sqlite" }
tari_common_types = { path = "../../base_layer/common_types" }
tari_comms = { path = "../../comms/core" }
tari_comms_dht = { path = "../../comms/dht" }
tari_crypto = { version = "0.19.1" }
tari_crypto = { version = "0.20" }
tari_p2p = { path = "../p2p", features = ["auto-update"] }
tari_service_framework = { path = "../service_framework" }
tari_shutdown = { path = "../../infrastructure/shutdown" }
tari_utilities = { version = "0.6" }
tari_utilities = { version = "0.7" }

chrono = { version = "0.4.19", default-features = false, features = ["serde"] }
diesel = { version = "2.0.3", features = ["sqlite", "serde_json", "chrono", "64-column-tables"] }
Expand Down
4 changes: 2 additions & 2 deletions base_layer/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ tari_common_types = { path = "../../base_layer/common_types" }
tari_comms = { path = "../../comms/core" }
tari_comms_dht = { path = "../../comms/dht" }
tari_comms_rpc_macros = { path = "../../comms/rpc_macros" }
tari_crypto = { version = "0.19.1", features = ["borsh"] }
tari_crypto = { version = "0.20", features = ["borsh"] }
tari_metrics = { path = "../../infrastructure/metrics", optional = true }
tari_mmr = { path = "../../base_layer/mmr", optional = true}
tari_p2p = { path = "../../base_layer/p2p" }
Expand All @@ -33,7 +33,7 @@ tari_service_framework = { path = "../service_framework" }
tari_shutdown = { path = "../../infrastructure/shutdown" }
tari_storage = { path = "../../infrastructure/storage" }
tari_test_utils = { path = "../../infrastructure/test_utils" }
tari_utilities = { version = "0.6", features = ["borsh"] }
tari_utilities = { version = "0.7", features = ["borsh"] }
tari_key_manager = { path = "../key_manager", features = ["key_manager_service"] }
tari_common_sqlite = { path = "../../common_sqlite" }

Expand Down
4 changes: 2 additions & 2 deletions base_layer/key_manager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ edition = "2021"
crate-type = ["lib", "cdylib"]

[dependencies]
tari_crypto = { version = "0.19.1" }
tari_utilities = { version = "0.6" }
tari_crypto = { version = "0.20" }
tari_utilities = { version = "0.7" }
tari_common_sqlite = { path = "../../common_sqlite" }
tari_common_types = { path = "../../base_layer/common_types"}
tari_service_framework = { path = "../service_framework" }
Expand Down
4 changes: 2 additions & 2 deletions base_layer/mmr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ edition = "2018"
default = []

[dependencies]
tari_utilities = { version = "0.6" }
tari_crypto = { version = "0.19.1" }
tari_utilities = { version = "0.7" }
tari_crypto = { version = "0.20" }
tari_common = { path = "../../common" }
thiserror = "1.0"
borsh = "1.2"
Expand Down
4 changes: 2 additions & 2 deletions base_layer/p2p/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ edition = "2018"
tari_comms = { path = "../../comms/core" }
tari_comms_dht = { path = "../../comms/dht" }
tari_common = { path = "../../common" }
tari_crypto = { version = "0.19.1" }
tari_crypto = { version = "0.20" }
tari_service_framework = { path = "../service_framework" }
tari_shutdown = { path = "../../infrastructure/shutdown" }
tari_storage = { path = "../../infrastructure/storage" }
tari_utilities = { version = "0.6" }
tari_utilities = { version = "0.7" }

anyhow = "1.0.53"
fs2 = "0.4.0"
Expand Down
4 changes: 2 additions & 2 deletions base_layer/tari_mining_helper_ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ edition = "2018"

[dependencies]
tari_comms = { path = "../../comms/core" }
tari_crypto = { version = "0.19.1" }
tari_crypto = { version = "0.20" }
tari_common = { path = "../../common" }
tari_core = { path = "../core", default-features = false, features = ["transactions"]}
tari_utilities = { version = "0.6" }
tari_utilities = { version = "0.7" }
libc = "0.2.65"
thiserror = "1.0.26"
borsh = "1.2"
Expand Down
4 changes: 2 additions & 2 deletions base_layer/wallet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ tari_common = { path = "../../common" }
tari_common_types = { path = "../../base_layer/common_types" }
tari_comms = { path = "../../comms/core" }
tari_comms_dht = { path = "../../comms/dht" }
tari_crypto = { version = "0.19.1" }
tari_crypto = { version = "0.20" }
tari_key_manager = { path = "../key_manager", features = ["key_manager_service"] }
tari_p2p = { path = "../p2p", features = ["auto-update"] }
tari_script = { path = "../../infrastructure/tari_script" }
tari_service_framework = { path = "../service_framework" }
tari_shutdown = { path = "../../infrastructure/shutdown" }
tari_common_sqlite = { path = "../../common_sqlite" }
tari_utilities = { version = "0.6" }
tari_utilities = { version = "0.7" }
tari_contacts = { path = "../../base_layer/contacts" }

# Uncomment for tokio tracing via tokio-console (needs "tracing" features)
Expand Down
4 changes: 2 additions & 2 deletions base_layer/wallet_ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ tari_common = { path="../../common" }
tari_common_types = { path="../common_types" }
tari_comms = { path = "../../comms/core", features = ["c_integration"]}
tari_comms_dht = { path = "../../comms/dht", default-features = false }
tari_crypto = { version = "0.19.1" }
tari_crypto = { version = "0.20" }
tari_key_manager = { path = "../key_manager" }
tari_p2p = { path = "../p2p" }
tari_script = { path = "../../infrastructure/tari_script" }
tari_shutdown = { path = "../../infrastructure/shutdown" }
tari_utilities = { version = "0.6" }
tari_utilities = { version = "0.7" }
minotari_wallet = { path = "../wallet", features = ["c_integration"]}
tari_contacts = { path = "../../base_layer/contacts" }

Expand Down
2 changes: 1 addition & 1 deletion common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ build = ["toml", "prost-build"]
static-application-info = ["git2"]

[dependencies]
tari_crypto = { version = "0.19.1" }
tari_crypto = { version = "0.20" }

anyhow = "1.0.53"
blake2 = "0.10"
Expand Down
2 changes: 1 addition & 1 deletion common_sqlite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tari_utilities = { version = "0.6" }
tari_utilities = { version = "0.7" }

diesel = { version = "2.0.3", features = ["sqlite", "r2d2", "serde_json", "chrono", "64-column-tables"] }
diesel_migrations = "2.0.0"
Expand Down
4 changes: 2 additions & 2 deletions comms/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ version = "1.0.0-pre.0"
edition = "2018"

[dependencies]
tari_crypto = { version = "0.19.1" }
tari_crypto = { version = "0.20" }
tari_metrics = { path = "../../infrastructure/metrics", optional = true }
tari_storage = { path = "../../infrastructure/storage" }
tari_shutdown = { path = "../../infrastructure/shutdown" }
tari_utilities = { version = "0.6" }
tari_utilities = { version = "0.7" }

anyhow = "1.0.53"
async-trait = "0.1.36"
Expand Down
4 changes: 2 additions & 2 deletions comms/dht/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ edition = "2018"
tari_comms = { path = "../core", features = ["rpc"] }
tari_common = { path = "../../common" }
tari_comms_rpc_macros = { path = "../rpc_macros" }
tari_crypto = { version = "0.19.1" }
tari_utilities = { version = "0.6" }
tari_crypto = { version = "0.20" }
tari_utilities = { version = "0.7" }
tari_shutdown = { path = "../../infrastructure/shutdown" }
tari_storage = { path = "../../infrastructure/storage" }
tari_common_sqlite = { path = "../../common_sqlite" }
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ serde = "1.0.80"

[dev-dependencies]
rand = "0.8"
tari_utilities = { version = "0.6", features = ["borsh"] }
tari_utilities = { version = "0.7", features = ["borsh"] }
4 changes: 2 additions & 2 deletions infrastructure/tari_script/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ readme = "README.md"
license = "BSD-3-Clause"

[dependencies]
tari_crypto = { version = "0.19.1" }
tari_utilities = { version = "0.6" }
tari_crypto = { version = "0.20" }
tari_utilities = { version = "0.7" }

blake2 = "0.10"
borsh = "1.2"
Expand Down
4 changes: 2 additions & 2 deletions integration_tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ minotari_node = { path = "../applications/minotari_node" }
minotari_node_grpc_client = { path = "../clients/rust/base_node_grpc_client" }
tari_chat_client = { path = "../base_layer/contacts/src/chat_client" }
minotari_chat_ffi = { path = "../base_layer/chat_ffi" }
tari_crypto = { version = "0.19.1" }
tari_crypto = { version = "0.20" }
tari_common = { path = "../common" }
tari_common_types = { path = "../base_layer/common_types" }
tari_comms = { path = "../comms/core" }
Expand All @@ -26,7 +26,7 @@ minotari_miner = { path = "../applications/minotari_miner" }
tari_p2p = { path = "../base_layer/p2p" }
tari_script = { path = "../infrastructure/tari_script" }
tari_shutdown = { path = "../infrastructure/shutdown" }
tari_utilities = { version = "0.6" }
tari_utilities = { version = "0.7" }
minotari_wallet = { path = "../base_layer/wallet" }
minotari_wallet_ffi = { path = "../base_layer/wallet_ffi" }
minotari_wallet_grpc_client = { path = "../clients/rust/wallet_grpc_client" }
Expand Down

0 comments on commit 6d25ded

Please sign in to comment.