Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/yuji/fix-feature-flag' (#2165)
Browse files Browse the repository at this point in the history
* origin/yuji/fix-feature-flag:
  to be able to build sdk
  add rand flag to sdk
  • Loading branch information
adrianbrink committed Nov 15, 2023
2 parents 630e859 + 68c3911 commit c23bf62
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .changelog/unreleased/bug-fixes/2164-fix-sdk-feature-flag.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Fix a feature flag to compile namada_sdk
([\#2164](https://github.com/anoma/namada/issues/2164))
4 changes: 2 additions & 2 deletions sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ version.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[features]
default = []
default = ["tendermint-rpc"]

multicore = ["masp_proofs/multicore"]

Expand Down Expand Up @@ -68,7 +68,7 @@ futures.workspace = true
itertools.workspace = true
masp_primitives.workspace = true
masp_proofs = { workspace = true, features = ["download-params"] }
namada_core = {path = "../core", default-features = false}
namada_core = {path = "../core", default-features = false, features = ["rand"]}
namada_ethereum_bridge = {path = "../ethereum_bridge", default-features = false}
namada_proof_of_stake = {path = "../proof_of_stake", default-features = false}
num256.workspace = true
Expand Down

0 comments on commit c23bf62

Please sign in to comment.