Skip to content

Commit

Permalink
Merge branch 'murisi/sdk-re-exports' (#2033)
Browse files Browse the repository at this point in the history
* origin/murisi/sdk-re-exports:
  Added changelog entry.
  Now re-export crates that may be needed to use the SDK.
  • Loading branch information
tzemanovic authored and brentstone committed Nov 11, 2023
2 parents c75185e + abc49d6 commit b9e1f4a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .changelog/unreleased/SDK/2033-sdk-re-exports.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Now re-exporting crates that will commonly be used with the SDK.
([\#2033](https://github.com/anoma/namada/pull/2033))
5 changes: 4 additions & 1 deletion sdk/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ pub use namada_core::proto;
pub use tendermint_rpc;
#[cfg(feature = "tendermint-rpc-abcipp")]
pub use tendermint_rpc_abcipp as tendermint_rpc;
pub use {bip39, namada_core as core, namada_proof_of_stake as proof_of_stake};
pub use {
bip39, borsh, masp_primitives, masp_proofs, namada_core as core,
namada_proof_of_stake as proof_of_stake, zeroize,
};
#[cfg(feature = "abcipp")]
pub use {
ibc_abcipp as ibc, ibc_proto_abcipp as ibc_proto,
Expand Down

0 comments on commit b9e1f4a

Please sign in to comment.