4 releases (2 breaking)

0.3.0 Oct 20, 2024
0.2.0 Aug 29, 2024
0.1.1 May 16, 2024
0.1.0 May 16, 2024

#42 in Value formatting

Download history 6402/week @ 2024-11-16 3927/week @ 2024-11-23 7736/week @ 2024-11-30 5954/week @ 2024-12-07 9616/week @ 2024-12-14 6805/week @ 2024-12-21 5644/week @ 2024-12-28 11772/week @ 2025-01-04 15058/week @ 2025-01-11 10168/week @ 2025-01-18 15116/week @ 2025-01-25 18975/week @ 2025-02-01 21509/week @ 2025-02-08 24499/week @ 2025-02-15 18453/week @ 2025-02-22 12550/week @ 2025-03-01

81,272 downloads per month

Apache-2.0 OR MIT

43KB
839 lines

hex_str

Handle and parse hex strings of constant and variable lengths

Example:

Example hex string, an md5 of an empty file:

d41d8cd98f00b204e9800998ecf8427e
use hex_str::HexString;

let s = "d41d8cd98f00b204e9800998ecf8427e";

// constant length, encoded in the type system
let u = HexStringN::<16>::try_parse(s).unwrap();
assert_eq!(u, "d41d8cd98f00b204e9800998ecf8427e");

// variable length
let v = HexString::try_parse(s).unwrap();
assert_eq!(v, "d41d8cd98f00b204e9800998ecf8427e");

Feature flags:

  • serde - adds the ability to serialize, and deserialize HexString's, and HexStringN's using serde.
  • rand - adds implementation of rand's Standard distribution, which enables random generation of HexStringN's directly.

Using serde feature:

use hex_str::HexString;
use serde::{Deserialize, Serialize};

#[derive(Deserialize, Serialize)]
struct Example {
    md5: HexString<16>,
}

let s = r#"
    {
        "md5": "d41d8cd98f00b204e9800998ecf8427e"
    }
"#;

let example: Example = serde_json::from_str(s).unwrap();
assert_eq!(example.md5, "d41d8cd98f00b204e9800998ecf8427e");

serde_json::to_string(&example).unwrap();

Using rand feature:

use hex_str::HexString;

let _: HexString<16> = rand::random();

Dependencies

~215–790KB
~18K SLoC