#compile-time #literals #hex

no-std dev hexlit

A zero-allocation no_std-compatible zero-cost way to convert hex-strings to byte-arrays at compile time

13 releases

0.5.5 Jul 10, 2022
0.5.3 Oct 5, 2021
0.5.1 Jul 10, 2021
0.5.0 Mar 25, 2021
0.3.2 Nov 30, 2020

#218 in Value formatting

Download history 2777/week @ 2026-02-01 3241/week @ 2026-02-08 2807/week @ 2026-02-15 4223/week @ 2026-02-22 5381/week @ 2026-03-01 4597/week @ 2026-03-08 3934/week @ 2026-03-15 2993/week @ 2026-03-22 4908/week @ 2026-03-29 4472/week @ 2026-04-05 2651/week @ 2026-04-12 5367/week @ 2026-04-19 5483/week @ 2026-04-26 4086/week @ 2026-05-03 3947/week @ 2026-05-10 5121/week @ 2026-05-17

20,262 downloads per month
Used in 13 crates

MIT license

10KB
225 lines

Current Crates.io Version docs-rs MSRV 1.51+

hexlit

A zero-allocation no_std-compatible zero-cost way to convert hex-strings to byte-arrays at compile time.

To add to your Cargo.toml:

hexlit = "0.5.5"

Example

use hexlit::hex;

fn main() {
    const DATA: [u8; 4] = hex!("01020304");
    assert_eq!(DATA, [1, 2, 3, 4]);
    assert_eq!(hex!("0xDEADBEEF"), [0xDE, 0xAD, 0xBE, 0xEF]);
    assert_eq!(hex!("a1b2c3d4"), [0xA1, 0xB2, 0xC3, 0xD4]);
    assert_eq!(hex!("E5 E6 90 92"), [0xE5, 0xE6, 0x90, 0x92]);
    assert_eq!(hex!("0a0B0C0d"), [10, 11, 12, 13]);
    assert_eq!(hex!(1a 0_b 0C 0d), [0x1a, 11, 12, 13]);
    assert_eq!(hex!(0F 03|0B|0C|0d), [15, 3, 11, 12, 13]);
    assert_eq!(hex!(0A-0B-0C-0d), [10, 11, 12, 13]);
    assert_eq!(
        hex!(
            A1 B2
            C3
            D4
        ),
        [0xA1, 0xB2, 0xC3, 0xD4]
    );
}

No runtime deps