1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#![deny(
	trivial_casts,
	trivial_numeric_casts,
	stable_features,
	non_shorthand_field_patterns,
	renamed_and_removed_lints,
	unsafe_code,
	clippy::exhaustive_enums
)]
#![allow(clippy::all, clippy::exhaustive_enums)]
// pub mod tangle_mainnet_runtime;
pub mod tangle_testnet_runtime;
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(not(any(feature = "std", feature = "web")))]
pub use subxt_core;