7 releases (2 stable)
new 1.1.0 | Nov 3, 2024 |
---|---|
1.0.0 | May 7, 2024 |
0.2.2 | Nov 8, 2023 |
0.2.1 | May 16, 2023 |
0.1.1 | Mar 21, 2023 |
#580 in Parser implementations
105 downloads per month
Used in whatwg-datetime
30KB
470 lines
whatwg-infra
A tiny Rust crate that implements parts of the WHATWG Infra Standard. Specifically, it implements the following:
It exposes a small set of primitives that are useful for parsing text into machine-readable data.
Install
cargo add whatwg-infra
Usage
You can import individual functions:
use whatwg_infra::{
is_ascii_tab_newline,
is_c0_control,
is_c0_control_space,
is_noncharacter
};
assert!(is_ascii_tab_newline('\t'));
assert!(is_c0_control('\u{0000}'));
assert!(is_c0_control_space('\u{0020}'));
You can also import the traits to get all the functionality, and execute the methods on the types directly.
use whatwg_infra::{InfraScalarValue, InfraStr, InfraUtf16Surrogate};
assert_eq!('a'.is_ascii_tab_newline(), false);
assert_eq!('\u{001E}'.is_c0_control(), true);
assert_eq!('\n'.is_c0_control_space(), true);
assert_eq!('\u{CFFFF}'.is_noncharacter(), true);
no_std
This crate does not depend on libstd, and can be used in #![no_std]
environments.
License
Licensed under either of
- Apache License, Version 2.0 (
LICENSE-APACHE
or http://www.apache.org/licenses/LICENSE-2.0) - MIT license (
LICENSE-MIT
or http://opensource.org/licenses/MIT)
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.