From adbc18597ea819ecf7da42d65d5ea4f6a7f55d42 Mon Sep 17 00:00:00 2001 From: Murisi Tarusenga Date: Mon, 23 Oct 2023 12:39:45 +0200 Subject: [PATCH 1/2] Now re-export crates that may be needed to use the SDK. --- sdk/src/lib.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sdk/src/lib.rs b/sdk/src/lib.rs index 622a63a1d1..2af1b9dae9 100644 --- a/sdk/src/lib.rs +++ b/sdk/src/lib.rs @@ -3,7 +3,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, From abc49d63cb4323f372a49720945f290d1699ad9a Mon Sep 17 00:00:00 2001 From: Murisi Tarusenga Date: Mon, 23 Oct 2023 12:46:59 +0200 Subject: [PATCH 2/2] Added changelog entry. --- .changelog/unreleased/SDK/2033-sdk-re-exports.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .changelog/unreleased/SDK/2033-sdk-re-exports.md diff --git a/.changelog/unreleased/SDK/2033-sdk-re-exports.md b/.changelog/unreleased/SDK/2033-sdk-re-exports.md new file mode 100644 index 0000000000..049af49e8f --- /dev/null +++ b/.changelog/unreleased/SDK/2033-sdk-re-exports.md @@ -0,0 +1,2 @@ +- Now re-exporting crates that will commonly be used with the SDK. + ([\#2033](https://github.com/anoma/namada/pull/2033)) \ No newline at end of file