Skip to content

Commit

Permalink
chore: fix ffi stagenet + new version (#6217)
Browse files Browse the repository at this point in the history
Description
---
Fixes FFI build for stagenet
Creates new release version for stagenet

Motivation and Context
---

How Has This Been Tested?
---
manual
  • Loading branch information
SWvheerden committed Mar 14, 2024
1 parent b51b63e commit ebf926f
Show file tree
Hide file tree
Showing 36 changed files with 152 additions and 143 deletions.
62 changes: 31 additions & 31 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
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.0.0-alpha.0a"
version = "1.0.0-alpha.1"
edition = "2018"

[dependencies]
Expand All @@ -31,7 +31,7 @@ tonic = { version = "0.8.3", features = ["tls"]}
zeroize = "1"

[build-dependencies]
tari_features = { path = "../../common/tari_features", version = "1.0.0-alpha.0a" }
tari_features = { path = "../../common/tari_features", version = "1.0.0-alpha.1" }
tonic-build = "0.8.4"

[package.metadata.cargo-machete]
Expand Down
4 changes: 2 additions & 2 deletions applications/minotari_app_utilities/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "minotari_app_utilities"
version = "1.0.0-alpha.0a"
version = "1.0.0-alpha.1"
authors = ["The Tari Development Community"]
edition = "2018"
license = "BSD-3-Clause"
Expand All @@ -26,7 +26,7 @@ tonic = "0.8.3"

[build-dependencies]
tari_common = { path = "../../common", features = ["build", "static-application-info"] }
tari_features = { path = "../../common/tari_features", version = "1.0.0-alpha.0a" }
tari_features = { path = "../../common/tari_features", version = "1.0.0-alpha.1" }

[features]
miner_input = ["minotari_app_grpc"]
4 changes: 2 additions & 2 deletions applications/minotari_console_wallet/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "minotari_console_wallet"
version = "1.0.0-alpha.0a"
version = "1.0.0-alpha.1"
authors = ["The Tari Development Community"]
edition = "2018"
license = "BSD-3-Clause"
Expand Down Expand Up @@ -82,7 +82,7 @@ default-features = false
features = ["crossterm"]

[build-dependencies]
tari_features = { path = "../../common/tari_features", version = "1.0.0-alpha.0a" }
tari_features = { path = "../../common/tari_features", version = "1.0.0-alpha.1" }

[features]
default = ["libtor"]
Expand Down
4 changes: 2 additions & 2 deletions applications/minotari_merge_mining_proxy/Cargo.toml
Expand Up @@ -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.0.0-alpha.0a"
version = "1.0.0-alpha.1"
edition = "2018"

[features]
Expand Down Expand Up @@ -46,4 +46,4 @@ tracing = "0.1"
url = "2.1.1"

[build-dependencies]
tari_features = { path = "../../common/tari_features", version = "1.0.0-alpha.0a"}
tari_features = { path = "../../common/tari_features", version = "1.0.0-alpha.1"}
2 changes: 1 addition & 1 deletion applications/minotari_miner/Cargo.toml
Expand Up @@ -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.0.0-alpha.0a"
version = "1.0.0-alpha.1"
edition = "2018"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions applications/minotari_node/Cargo.toml
Expand Up @@ -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.0.0-alpha.0a"
version = "1.0.0-alpha.1"
edition = "2018"

[dependencies]
Expand Down Expand Up @@ -58,7 +58,7 @@ safe = []
libtor = ["tari_libtor"]

[build-dependencies]
tari_features = { path = "../../common/tari_features", version = "1.0.0-alpha.0a"}
tari_features = { path = "../../common/tari_features", version = "1.0.0-alpha.1"}

[package.metadata.cargo-machete]
ignored = [
Expand Down
2 changes: 1 addition & 1 deletion base_layer/chat_ffi/Cargo.toml
Expand Up @@ -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.0.0-alpha.0a"
version = "1.0.0-alpha.1"
edition = "2018"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions base_layer/common_types/Cargo.toml
Expand Up @@ -3,13 +3,13 @@ name = "tari_common_types"
authors = ["The Tari Development Community"]
description = "Tari cryptocurrency common types"
license = "BSD-3-Clause"
version = "1.0.0-alpha.0a"
version = "1.0.0-alpha.1"
edition = "2018"

[dependencies]
tari_crypto = { version = "0.20" }
tari_utilities = { version = "0.7" }
tari_common = { path = "../../common", version = "1.0.0-alpha.0a" }
tari_common = { path = "../../common", version = "1.0.0-alpha.1" }


chacha20poly1305 = "0.10.1"
Expand Down

0 comments on commit ebf926f

Please sign in to comment.