15 releases

0.1.15 Apr 28, 2024
0.1.14 Nov 21, 2023
0.1.13 May 20, 2023
0.1.12 May 27, 2021
0.1.1 Nov 18, 2017

#504 in Encoding

Download history 88511/week @ 2024-01-23 94776/week @ 2024-01-30 99358/week @ 2024-02-06 98159/week @ 2024-02-13 106205/week @ 2024-02-20 99847/week @ 2024-02-27 99759/week @ 2024-03-05 97229/week @ 2024-03-12 100194/week @ 2024-03-19 90997/week @ 2024-03-26 106057/week @ 2024-04-02 99675/week @ 2024-04-09 94683/week @ 2024-04-16 91899/week @ 2024-04-23 89748/week @ 2024-04-30 68507/week @ 2024-05-07

364,737 downloads per month
Used in 789 crates (19 directly)

MIT license

130KB
1.5K SLoC

This library provides macros to define compile-time byte slices and arrays from encoded strings (using common bases like base64, base32, or hexadecimal, and also custom bases). It also provides a macro to define compile-time custom encodings to be used with the data-encoding crate.

See the documentation for more details.

Up to Rust 1.50, you may need to add the following to your .cargo/config.toml to use this library in no-std or no-alloc environments:

[unstable]
features = ["host_dep"]

From Rust 1.51, you may need to add the following to your Cargo.toml:

[package]
resolver = "2"

lib.rs:

Macros for data-encoding

This library provides macros to define compile-time byte arrays from encoded strings (using common bases like base64, base32, or hexadecimal, and also custom bases). It also provides a macro to define compile-time custom encodings to be used with the data-encoding crate at run-time.

Up to Rust 1.50, you may need to add the following to your .cargo/config.toml to use this library in no-std or no-alloc environments:

[unstable]
features = ["host_dep"]

From Rust 1.51, you may need to add the following to your Cargo.toml:

[package]
resolver = "2"

Examples

You can define a compile-time byte slice from an encoded string literal:

const HELLO_SLICE: &'static [u8] = &data_encoding_macro::hexlower!("68656c6c6f");
const FOOBAR_SLICE: &'static [u8] = &data_encoding_macro::base64!("Zm9vYmFy");

You can also define a compile-time byte array from an encoded string literal:

data_encoding_macro::hexlower_array!("const HELLO" = "68656c6c6f");
data_encoding_macro::base64_array!("const FOOBAR" = "Zm9vYmFy");

You can define a compile-time custom encoding from its specification:

const HEX: data_encoding::Encoding = data_encoding_macro::new_encoding! {
    symbols: "0123456789abcdef",
    translate_from: "ABCDEF",
    translate_to: "abcdef",
};
const BASE64: data_encoding::Encoding = data_encoding_macro::new_encoding! {
    symbols: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",
    padding: '=',
};

Dependencies

~1.5MB
~34K SLoC