Skip to content

Commit

Permalink
ci(fix): build warning about Invalid TOML document
Browse files Browse the repository at this point in the history
  • Loading branch information
leet4tari committed Dec 14, 2023
1 parent a6929df commit 78044de
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions applications/minotari_app_grpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ rand = "0.8"
rcgen = "0.11.3"
subtle = { version = "2.5.0", features = ["core_hint_black_box"] }
thiserror = "1"
tokio = { version = "1.23" , features = ["fs"]}
tokio = { version = "1.23", features = ["fs"] }
tonic = "0.6.2"
zeroize = "1"

Expand All @@ -35,4 +35,3 @@ tonic-build = "0.6.2"

[package.metadata.cargo-machete]
ignored = ["prost"] # this is so we can run cargo machete without getting false positive about macro dependancies

8 changes: 4 additions & 4 deletions applications/minotari_app_utilities/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ license = "BSD-3-Clause"
tari_common = { path = "../../common" }
tari_common_types = { path = "../../base_layer/common_types" }
tari_comms = { path = "../../comms/core" }
tari_features = { path = "../../common/tari_features"}
tari_features = { path = "../../common/tari_features" }
tari_utilities = { version = "0.7" }
minotari_app_grpc = { path = "../minotari_app_grpc" , optional = true}
minotari_app_grpc = { path = "../minotari_app_grpc", optional = true }

clap = { version = "3.2", features = ["derive", "env"] }
futures = { version = "^0.3.16", default-features = false, features = ["alloc"] }
Expand All @@ -27,7 +27,7 @@ tonic = "0.6.2"

[build-dependencies]
tari_common = { path = "../../common", features = ["build", "static-application-info"] }
tari_features = { path = "../../common/tari_features"}
tari_features = { path = "../../common/tari_features" }

[features]
miner_input = ["minotari_app_grpc"]
miner_input = ["minotari_app_grpc"]

0 comments on commit 78044de

Please sign in to comment.