inhex/
lib.rs

1pub use indoc::indoc;
2pub use rustc_hex::FromHex;
3
4#[macro_export] macro_rules! inhex(
5    ($l: literal) => {
6        inhex::FromHex::from_hex(inhex::indoc!($l))
7            .expect("Inhex expected to be used for statically checked data")
8    }
9);