#hex #no-std

no-std hex

Encoding and decoding data into/from hexadecimal representation

8 releases

0.4.3 Mar 3, 2021
0.4.2 Feb 18, 2020
0.4.0 Sep 17, 2019
0.3.2 Apr 19, 2018
0.1.0 Oct 23, 2015

#16 in Encoding

Download history 1203956/week @ 2023-11-03 1244452/week @ 2023-11-10 1135013/week @ 2023-11-17 1104066/week @ 2023-11-24 1190495/week @ 2023-12-01 1240446/week @ 2023-12-08 1167587/week @ 2023-12-15 728673/week @ 2023-12-22 891431/week @ 2023-12-29 1187903/week @ 2024-01-05 1186796/week @ 2024-01-12 1294719/week @ 2024-01-19 1295984/week @ 2024-01-26 1272013/week @ 2024-02-02 1280206/week @ 2024-02-09 1031891/week @ 2024-02-16

5,103,107 downloads per month
Used in 12,623 crates (3,951 directly)

MIT/Apache

24KB
427 lines

hex

Crates.io: hex Documentation Build Status (Github Actions)

Encoding and decoding data into/from hexadecimal representation.

Examples

Encoding a String

let hex_string = hex::encode("Hello world!");

println!("{}", hex_string); // Prints "48656c6c6f20776f726c6421"

Decoding a String

let decoded_string = hex::decode("48656c6c6f20776f726c6421");

println!("{}", decoded_string); // Prints "Hello world!"

You can find the documentation here.

Installation

In order to use this crate, you have to add it under [dependencies] to your Cargo.toml

[dependencies]
hex = "0.4"

By default this will import std, if you are working in a no_std environment you can turn this off by adding the following

[dependencies]
hex = { version = "0.4", default-features = false }

Features

  • std: Enabled by default. Add support for Rust's libstd types.
  • serde: Disabled by default. Add support for serde de/serializing library. See the serde module documentation for usage.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~190KB