whatwg-infra

Crates.iowhatwg-infra
lib.rswhatwg-infra
version1.0.0
sourcesrc
created_at2023-03-20 06:28:43.003052
updated_at2024-05-07 20:41:48.470908
descriptionTiny Rust-based implementation of the WHATWG Infra Standard
homepage
repositoryhttps://github.com/neoncitylights/whatwg-rust
max_upload_size
id814962
size42,128
Samantha (neoncitylights)

documentation

https://docs.rs/whatwg-infra

README

whatwg-infra

License master docs docs.rs CI 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.

Commit count: 23

cargo fmt