Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(release): v1.9.1-rc.2
Browse files Browse the repository at this point in the history
stringhandler committed Dec 31, 2024
1 parent cb175ad commit 81b6323
Showing 36 changed files with 113 additions and 113 deletions.
4 changes: 2 additions & 2 deletions applications/minotari_app_grpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ authors = ["The Tari Development Community"]
description = "This crate is to provide a single source for all cross application grpc files and conversions to and from tari::core"
repository = "https://github.com/tari-project/tari"
license = "BSD-3-Clause"
version = "1.9.1-pre.2"
version = "1.9.1-rc.2"
edition = "2021"

[dependencies]
@@ -32,7 +32,7 @@ tonic = { version = "0.12.3", features = ["tls"] }
zeroize = "1"

[build-dependencies]
tari_features = { path = "../../common/tari_features", version = "1.9.1-pre.2" }
tari_features = { path = "../../common/tari_features", version = "1.9.1-rc.2" }
tonic-build = "0.12.3"

[package.metadata.cargo-machete]
4 changes: 2 additions & 2 deletions applications/minotari_app_utilities/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "minotari_app_utilities"
version = "1.9.1-pre.2"
version = "1.9.1-rc.2"
authors = ["The Tari Development Community"]
edition = "2018"
license = "BSD-3-Clause"
@@ -30,7 +30,7 @@ tari_common = { path = "../../common", features = [
"build",
"static-application-info",
] }
tari_features = { path = "../../common/tari_features", version = "1.9.1-pre.2" }
tari_features = { path = "../../common/tari_features", version = "1.9.1-rc.2" }

[features]
miner_input = ["minotari_app_grpc"]
6 changes: 3 additions & 3 deletions applications/minotari_console_wallet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "minotari_console_wallet"
version = "1.9.1-pre.2"
version = "1.9.1-rc.2"
authors = ["The Tari Development Community"]
edition = "2018"
license = "BSD-3-Clause"

[dependencies]
minotari_app_grpc = { path = "../minotari_app_grpc" }
minotari_app_utilities = { path = "../minotari_app_utilities" }
minotari_ledger_wallet_comms = { path = "../../applications/minotari_ledger_wallet/comms", version = "1.9.1-pre.2", optional = true }
minotari_ledger_wallet_comms = { path = "../../applications/minotari_ledger_wallet/comms", version = "1.9.1-rc.2", optional = true }
tari_common = { path = "../../common" }
tari_common_types = { path = "../../base_layer/common_types" }
tari_comms = { path = "../../comms/core" }
@@ -84,7 +84,7 @@ default-features = false
features = ["crossterm"]

[build-dependencies]
tari_features = { path = "../../common/tari_features", version = "1.9.1-pre.2" }
tari_features = { path = "../../common/tari_features", version = "1.9.1-rc.2" }

[features]
default = ["libtor", "ledger"]
2 changes: 1 addition & 1 deletion applications/minotari_ledger_wallet/common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "minotari_ledger_wallet_common"
version = "1.9.1-pre.2"
version = "1.9.1-rc.2"
authors = ["The Tari Development Community"]
license = "BSD-3-Clause"
edition = "2021"
2 changes: 1 addition & 1 deletion applications/minotari_ledger_wallet/comms/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "minotari_ledger_wallet_comms"
version = "1.9.1-pre.2"
version = "1.9.1-rc.2"
authors = ["The Tari Development Community"]
license = "BSD-3-Clause"
edition = "2021"
4 changes: 2 additions & 2 deletions applications/minotari_ledger_wallet/wallet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "minotari_ledger_wallet"
version = "1.9.1-pre.2"
version = "1.9.1-rc.2"
authors = ["The Tari Development Community"]
license = "BSD-3-Clause"
edition = "2021"
@@ -9,7 +9,7 @@ edition = "2021"
tari_crypto = { version = "0.21.0", default-features = false, features = [
"borsh",
] }
tari_hashing = { path = "../../../hashing", version = "1.9.1-pre.2" }
tari_hashing = { path = "../../../hashing", version = "1.9.1-rc.2" }

minotari_ledger_wallet_common = { path = "../common" }

4 changes: 2 additions & 2 deletions applications/minotari_merge_mining_proxy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ authors = ["The Tari Development Community"]
description = "The Tari merge mining proxy for xmrig"
repository = "https://github.com/tari-project/tari"
license = "BSD-3-Clause"
version = "1.9.1-pre.2"
version = "1.9.1-rc.2"
edition = "2018"

[features]
@@ -55,7 +55,7 @@ url = "2.1.1"
scraper = "0.19.0"

[build-dependencies]
tari_features = { path = "../../common/tari_features", version = "1.9.1-pre.2" }
tari_features = { path = "../../common/tari_features", version = "1.9.1-rc.2" }

[dev-dependencies]
hyper = { version = "0.14.12", features = ["full"] }
2 changes: 1 addition & 1 deletion applications/minotari_miner/Cargo.toml
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ authors = ["The Tari Development Community"]
description = "The tari miner implementation"
repository = "https://github.com/tari-project/tari"
license = "BSD-3-Clause"
version = "1.9.1-pre.2"
version = "1.9.1-rc.2"
edition = "2018"

[dependencies]
6 changes: 3 additions & 3 deletions applications/minotari_node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ authors = ["The Tari Development Community"]
description = "The tari full base node implementation"
repository = "https://github.com/tari-project/tari"
license = "BSD-3-Clause"
version = "1.9.1-pre.2"
version = "1.9.1-rc.2"
edition = "2018"

[dependencies]
@@ -26,7 +26,7 @@ tari_shutdown = { path = "../../infrastructure/shutdown" }
tari_utilities = { version = "0.8" }
tari_key_manager = { path = "../../base_layer/key_manager", features = [
"key_manager_service",
], version = "1.9.1-pre.2" }
], version = "1.9.1-rc.2" }

anyhow = "1.0.53"
async-trait = "0.1.52"
@@ -77,7 +77,7 @@ safe = []
libtor = ["tari_libtor"]

[build-dependencies]
tari_features = { path = "../../common/tari_features", version = "1.9.1-pre.2" }
tari_features = { path = "../../common/tari_features", version = "1.9.1-rc.2" }

[package.metadata.cargo-machete]
ignored = [
2 changes: 1 addition & 1 deletion base_layer/chat_ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ name = "minotari_chat_ffi"
authors = ["The Tari Development Community"]
description = "Tari cryptocurrency chat C FFI bindings"
license = "BSD-3-Clause"
version = "1.9.1-pre.2"
version = "1.9.1-rc.2"
edition = "2018"

[dependencies]
4 changes: 2 additions & 2 deletions base_layer/common_types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -3,13 +3,13 @@ name = "tari_common_types"
authors = ["The Tari Development Community"]
description = "Tari cryptocurrency common types"
license = "BSD-3-Clause"
version = "1.9.1-pre.2"
version = "1.9.1-rc.2"
edition = "2018"

[dependencies]
tari_crypto = { version = "0.21.0" }
tari_utilities = { version = "0.8" }
tari_common = { path = "../../common", version = "1.9.1-pre.2" }
tari_common = { path = "../../common", version = "1.9.1-rc.2" }
minotari_ledger_wallet_common = { path = "../../applications/minotari_ledger_wallet/common" }
chacha20poly1305 = "0.10.1"
bitflags = { version = "2.4", features = ["serde"] }
20 changes: 10 additions & 10 deletions base_layer/contacts/Cargo.toml
Original file line number Diff line number Diff line change
@@ -3,22 +3,22 @@ name = "tari_contacts"
authors = ["The Tari Development Community"]
description = "Tari contacts library"
license = "BSD-3-Clause"
version = "1.9.1-pre.2"
version = "1.9.1-rc.2"
edition = "2018"

[dependencies]
tari_common = { path = "../../common", version = "1.9.1-pre.2" }
tari_common_sqlite = { path = "../../common_sqlite", version = "1.9.1-pre.2" }
tari_common_types = { path = "../../base_layer/common_types", version = "1.9.1-pre.2" }
tari_comms = { path = "../../comms/core", version = "1.9.1-pre.2" }
tari_comms_dht = { path = "../../comms/dht", version = "1.9.1-pre.2" }
tari_common = { path = "../../common", version = "1.9.1-rc.2" }
tari_common_sqlite = { path = "../../common_sqlite", version = "1.9.1-rc.2" }
tari_common_types = { path = "../../base_layer/common_types", version = "1.9.1-rc.2" }
tari_comms = { path = "../../comms/core", version = "1.9.1-rc.2" }
tari_comms_dht = { path = "../../comms/dht", version = "1.9.1-rc.2" }
tari_crypto = { version = "0.21.0" }
tari_max_size = { path = "../../infrastructure/max_size" }
tari_p2p = { path = "../p2p", features = [
"auto-update",
], version = "1.9.1-pre.2" }
tari_service_framework = { path = "../service_framework", version = "1.9.1-pre.2" }
tari_shutdown = { path = "../../infrastructure/shutdown", version = "1.9.1-pre.2" }
], version = "1.9.1-rc.2" }
tari_service_framework = { path = "../service_framework", version = "1.9.1-rc.2" }
tari_shutdown = { path = "../../infrastructure/shutdown", version = "1.9.1-rc.2" }
tari_utilities = { version = "0.8" }

chrono = { version = "0.4.39", default-features = false, features = ["serde"] }
@@ -48,7 +48,7 @@ tari_test_utils = { path = "../../infrastructure/test_utils" }
tempfile = "3.1.0"

[build-dependencies]
tari_common = { path = "../../common", version = "1.9.1-pre.2" }
tari_common = { path = "../../common", version = "1.9.1-rc.2" }

[package.metadata.cargo-machete]
ignored = [
2 changes: 1 addition & 1 deletion base_layer/contacts/src/chat_client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ name = "tari_chat_client"
authors = ["The Tari Development Community"]
description = "Tari cucumber chat client"
license = "BSD-3-Clause"
version = "1.9.1-pre.2"
version = "1.9.1-rc.2"

edition = "2018"

36 changes: 18 additions & 18 deletions base_layer/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ repository = "https://github.com/tari-project/tari"
homepage = "https://tari.com"
readme = "README.md"
license = "BSD-3-Clause"
version = "1.9.1-pre.2"
version = "1.9.1-rc.2"
edition = "2018"

[features]
@@ -28,26 +28,26 @@ ledger = ["minotari_ledger_wallet_comms"]
metrics = ["tari_metrics"]

[dependencies]
minotari_ledger_wallet_comms = { path = "../../applications/minotari_ledger_wallet/comms", version = "1.9.1-pre.2", optional = true }
tari_common = { path = "../../common", version = "1.9.1-pre.2" }
tari_common_types = { path = "../../base_layer/common_types", version = "1.9.1-pre.2" }
tari_comms = { path = "../../comms/core", version = "1.9.1-pre.2" }
tari_comms_dht = { path = "../../comms/dht", version = "1.9.1-pre.2" }
tari_comms_rpc_macros = { path = "../../comms/rpc_macros", version = "1.9.1-pre.2" }
minotari_ledger_wallet_comms = { path = "../../applications/minotari_ledger_wallet/comms", version = "1.9.1-rc.2", optional = true }
tari_common = { path = "../../common", version = "1.9.1-rc.2" }
tari_common_types = { path = "../../base_layer/common_types", version = "1.9.1-rc.2" }
tari_comms = { path = "../../comms/core", version = "1.9.1-rc.2" }
tari_comms_dht = { path = "../../comms/dht", version = "1.9.1-rc.2" }
tari_comms_rpc_macros = { path = "../../comms/rpc_macros", version = "1.9.1-rc.2" }
tari_crypto = { version = "0.21.0", features = ["borsh"] }
tari_max_size = { path = "../../infrastructure/max_size" }
tari_metrics = { path = "../../infrastructure/metrics", optional = true, version = "1.9.1-pre.2" }
tari_mmr = { path = "../../base_layer/mmr", optional = true, version = "1.9.1-pre.2" }
tari_p2p = { path = "../../base_layer/p2p", version = "1.9.1-pre.2" }
tari_script = { path = "../../infrastructure/tari_script", version = "1.9.1-pre.2" }
tari_service_framework = { path = "../service_framework", version = "1.9.1-pre.2" }
tari_shutdown = { path = "../../infrastructure/shutdown", version = "1.9.1-pre.2" }
tari_storage = { path = "../../infrastructure/storage", version = "1.9.1-pre.2" }
tari_test_utils = { path = "../../infrastructure/test_utils", version = "1.9.1-pre.2" }
tari_metrics = { path = "../../infrastructure/metrics", optional = true, version = "1.9.1-rc.2" }
tari_mmr = { path = "../../base_layer/mmr", optional = true, version = "1.9.1-rc.2" }
tari_p2p = { path = "../../base_layer/p2p", version = "1.9.1-rc.2" }
tari_script = { path = "../../infrastructure/tari_script", version = "1.9.1-rc.2" }
tari_service_framework = { path = "../service_framework", version = "1.9.1-rc.2" }
tari_shutdown = { path = "../../infrastructure/shutdown", version = "1.9.1-rc.2" }
tari_storage = { path = "../../infrastructure/storage", version = "1.9.1-rc.2" }
tari_test_utils = { path = "../../infrastructure/test_utils", version = "1.9.1-rc.2" }
tari_utilities = { version = "0.8", features = ["borsh"] }
tari_key_manager = { path = "../key_manager", features = [
"key_manager_service",
], version = "1.9.1-pre.2" }
], version = "1.9.1-rc.2" }
tari_common_sqlite = { path = "../../common_sqlite" }
tari_hashing = { path = "../../hashing" }

@@ -117,8 +117,8 @@ static_assertions = "1.1.0"
[build-dependencies]
tari_common = { path = "../../common", features = [
"build",
], version = "1.9.1-pre.2" }
tari_features = { path = "../../common/tari_features", version = "1.9.1-pre.2" }
], version = "1.9.1-rc.2" }
tari_features = { path = "../../common/tari_features", version = "1.9.1-rc.2" }

[[bench]]
name = "mempool"
8 changes: 4 additions & 4 deletions base_layer/key_manager/Cargo.toml
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ authors = ["The Tari Development Community"]
description = "Tari cryptocurrency wallet key management"
repository = "https://github.com/tari-project/tari"
license = "BSD-3-Clause"
version = "1.9.1-pre.2"
version = "1.9.1-rc.2"
edition = "2021"

[lib]
@@ -13,9 +13,9 @@ crate-type = ["lib", "cdylib"]
[dependencies]
tari_crypto = { version = "0.21.0" }
tari_utilities = { version = "0.8" }
tari_common_sqlite = { path = "../../common_sqlite", version = "1.9.1-pre.2" }
tari_common_types = { path = "../../base_layer/common_types", version = "1.9.1-pre.2" }
tari_service_framework = { path = "../service_framework", version = "1.9.1-pre.2" }
tari_common_sqlite = { path = "../../common_sqlite", version = "1.9.1-rc.2" }
tari_common_types = { path = "../../base_layer/common_types", version = "1.9.1-rc.2" }
tari_service_framework = { path = "../service_framework", version = "1.9.1-rc.2" }

async-trait = { version = "0.1.50" }
chrono = { version = "0.4.39", default-features = false, features = ["serde"] }
2 changes: 1 addition & 1 deletion base_layer/mmr/Cargo.toml
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ authors = ["The Tari Development Community"]
description = "A Merkle Mountain Range implementation"
repository = "https://github.com/tari-project/tari"
license = "BSD-3-Clause"
version = "1.9.1-pre.2"
version = "1.9.1-rc.2"
edition = "2018"

[features]
16 changes: 8 additions & 8 deletions base_layer/p2p/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tari_p2p"
version = "1.9.1-pre.2"
version = "1.9.1-rc.2"
authors = ["The Tari Development community"]
description = "Tari base layer-specific peer-to-peer communication features"
repository = "https://github.com/tari-project/tari"
@@ -10,13 +10,13 @@ license = "BSD-3-Clause"
edition = "2021"

[dependencies]
tari_comms = { path = "../../comms/core", version = "1.9.1-pre.2" }
tari_comms_dht = { path = "../../comms/dht", version = "1.9.1-pre.2" }
tari_common = { path = "../../common", version = "1.9.1-pre.2" }
tari_comms = { path = "../../comms/core", version = "1.9.1-rc.2" }
tari_comms_dht = { path = "../../comms/dht", version = "1.9.1-rc.2" }
tari_common = { path = "../../common", version = "1.9.1-rc.2" }
tari_crypto = { version = "0.21.0" }
tari_service_framework = { path = "../service_framework", version = "1.9.1-pre.2" }
tari_shutdown = { path = "../../infrastructure/shutdown", version = "1.9.1-pre.2" }
tari_storage = { path = "../../infrastructure/storage", version = "1.9.1-pre.2" }
tari_service_framework = { path = "../service_framework", version = "1.9.1-rc.2" }
tari_shutdown = { path = "../../infrastructure/shutdown", version = "1.9.1-rc.2" }
tari_storage = { path = "../../infrastructure/storage", version = "1.9.1-rc.2" }
tari_utilities = { version = "0.8" }

anyhow = "1.0.53"
@@ -57,7 +57,7 @@ tempfile = "3.1.0"
[build-dependencies]
tari_common = { path = "../../common", features = [
"build",
], version = "1.9.1-pre.2" }
], version = "1.9.1-rc.2" }

[features]
test-mocks = []
4 changes: 2 additions & 2 deletions base_layer/service_framework/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tari_service_framework"
version = "1.9.1-pre.2"
version = "1.9.1-rc.2"
authors = ["The Tari Development Community"]
description = "The Tari communication stack service framework"
repository = "https://github.com/tari-project/tari"
@@ -10,7 +10,7 @@ license = "BSD-3-Clause"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tari_shutdown = { path = "../../infrastructure/shutdown", version = "1.9.1-pre.2" }
tari_shutdown = { path = "../../infrastructure/shutdown", version = "1.9.1-rc.2" }

anyhow = "1.0.53"
async-trait = "0.1.50"
6 changes: 3 additions & 3 deletions base_layer/tari_mining_helper_ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ name = "minotari_mining_helper_ffi"
authors = ["The Tari Development Community"]
description = "Tari cryptocurrency miningcore C FFI bindings"
license = "BSD-3-Clause"
version = "1.9.1-pre.2"
version = "1.9.1-rc.2"
edition = "2018"

[dependencies]
@@ -15,7 +15,7 @@ tari_core = { path = "../core", default-features = false, features = [
"base_node_proto",
"base_node",
] }
tari_common_types = { path = "../../base_layer/common_types", version = "1.9.1-pre.2" }
tari_common_types = { path = "../../base_layer/common_types", version = "1.9.1-rc.2" }
tari_utilities = { version = "0.8" }
libc = "0.2.65"
thiserror = "1.0.26"
@@ -27,7 +27,7 @@ tari_core = { path = "../core", features = ["transactions", "base_node"] }
rand = "0.8"

[build-dependencies]
tari_features = { path = "../../common/tari_features", version = "1.9.1-pre.2" }
tari_features = { path = "../../common/tari_features", version = "1.9.1-rc.2" }
cbindgen = "0.24.3"
tari_common = { path = "../../common", features = [
"build",
Loading

0 comments on commit 81b6323

Please sign in to comment.