Skip to content
This repository has been archived by the owner on Oct 8, 2023. It is now read-only.
generated from nlp-rs/rust-template

A tiny Rust crate that implements parts of the WHATWG Infra Standard

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

neoncitylights/whatwg-infra-rs

Repository files navigation

whatwg-infra 🦀

License docs.rs CI Security audit codecov

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

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.