Skip to content

Commit

Permalink
fix(tangle-subxt): make no_std compatible again (#804)
Browse files Browse the repository at this point in the history
* feat(tangle-subxt): always export `subxt_core`

* fix(tangle-subxt): make no_std compatible again

* chore: fmt
  • Loading branch information
Serial-ATA authored Nov 4, 2024
1 parent d98a91c commit b8294e0
Show file tree
Hide file tree
Showing 2 changed files with 13,649 additions and 16,372 deletions.
5 changes: 3 additions & 2 deletions tangle-subxt/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@ pub use parity_scale_codec;
pub use scale_info;
#[cfg(any(feature = "std", feature = "web"))]
pub use subxt;
pub use subxt_signer;
// `subxt` already re-exports `subxt-core`
#[cfg(any(feature = "std", feature = "web"))]
pub use subxt::ext::subxt_core;
#[cfg(not(any(feature = "std", feature = "web")))]
pub use subxt_core;
pub use subxt_signer;

// #[cfg_attr(rustfmt, rustfmt::skip)]
// pub mod tangle_mainnet_runtime;
Expand Down
Loading

0 comments on commit b8294e0

Please sign in to comment.