#hex #macro #hex-string #compile-time #decoding #decode #byte

macro hex-macro

Adds a hex! macro for compile-time hex decoding

1 unstable release

0.1.0 Jun 3, 2024

#2186 in Encoding

MIT license

4KB

hex-macro

Crates.io Documentation License

hex-macro is a Rust crate that provides a hex! macro for compile-time hex decoding.

use hex_macro::hex;

pub const DATA: [u8; 11] = hex!("0x48656c6c6f20776f726c64"); // Also works without the '0x' prefix
assert_eq!(DATA, *b"Hello world");

Features

  • Decodes hex strings into byte arrays at compile time.
  • Supports hex strings with and without the 0x prefix.

Installation

Add this to your Cargo.toml:

[dependencies]
hex-macro = "0.1.0"

TODO

  • Add support for other decoding backends using feature flags

License

This project is licensed under the MIT License.

Contributing

Contributions are welcome! Please open an issue or submit a pull request on GitHub.

Dependencies

~280–730KB
~17K SLoC