1#![deny(
2 trivial_casts,
3 trivial_numeric_casts,
4 stable_features,
5 non_shorthand_field_patterns,
6 renamed_and_removed_lints,
7 unsafe_code,
8 clippy::exhaustive_enums
9)]
10#![allow(clippy::all, clippy::exhaustive_enums)]
11
12pub use parity_scale_codec;
13pub use scale_info;
14#[cfg(any(feature = "std", feature = "web"))]
15pub use subxt;
16#[cfg(any(feature = "std", feature = "web"))]
17pub use subxt::ext::subxt_core;
18#[cfg(not(any(feature = "std", feature = "web")))]
19pub use subxt_core;
20pub use subxt_signer;
21
22#[cfg_attr(rustfmt, rustfmt::skip)]
25pub mod tangle_testnet_runtime;
26
27mod field_ext;
28pub use field_ext::*;