moverox_traits/
external.rs

1//! Re-exports for derive
2pub use moverox_types::{Address, IdentStr, Identifier, StructTag, TypeTag, U256, const_address};
3#[allow(exported_private_dependencies, clippy::useless_attribute)]
4pub use serde;
5
6pub const fn const_ident(s: &'static str) -> &'static IdentStr {
7    IdentStr::cast(s)
8}