Skip to content

Commit

Permalink
Merge branch 'development' into mp_sort_completed_transactions
Browse files Browse the repository at this point in the history
  • Loading branch information
mmrrnn authored Jan 10, 2025
2 parents 0f07f57 + 16fb40c commit 2e50d9e
Show file tree
Hide file tree
Showing 49 changed files with 387 additions and 194 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build_ledger_wallet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ name: Build minotari_ledger_wallet
env:
TS_FILENAME: "minotari_ledger_wallet"
SHARUN: "shasum --algorithm 256"
DOCKER_IMAGE: "ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder:3.43.0 "

concurrency:
# https://docs.github.com/en/actions/examples/using-concurrency-expressions-and-a-test-matrix
Expand Down Expand Up @@ -59,7 +60,7 @@ jobs:
docker run --rm \
-v ".:/app" \
-w "/app/applications/minotari_ledger_wallet/wallet" \
ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder \
${{env.DOCKER_IMAGE}} \
cargo ledger build ${{ matrix.ledger_target }}
- name: env Setup
Expand Down
68 changes: 34 additions & 34 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 @@ -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.2-pre.0"
edition = "2021"

[dependencies]
Expand Down Expand Up @@ -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.2-pre.0" }
tonic-build = "0.12.3"

[package.metadata.cargo-machete]
Expand Down
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.2-pre.0"
authors = ["The Tari Development Community"]
edition = "2018"
license = "BSD-3-Clause"
Expand Down Expand Up @@ -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.2-pre.0" }

[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.2-pre.0"
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.2-pre.0", optional = true }
tari_common = { path = "../../common" }
tari_common_types = { path = "../../base_layer/common_types" }
tari_comms = { path = "../../comms/core" }
Expand Down Expand Up @@ -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.2-pre.0" }

[features]
default = ["libtor", "ledger"]
Expand Down
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.2-pre.0"
authors = ["The Tari Development Community"]
license = "BSD-3-Clause"
edition = "2021"
Expand Down
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.2-pre.0"
authors = ["The Tari Development Community"]
license = "BSD-3-Clause"
edition = "2021"
Expand Down
Loading

0 comments on commit 2e50d9e

Please sign in to comment.