ascii 0.9.1

ASCII-only equivalents to `char`, `str` and `String`.
Documentation

ascii

A library that provides ASCII-only string and character types, equivalent to the char, str and String types in the standard library.

Types and conversion traits are described in the Documentation.

You can include this crate in your cargo project by adding it to the dependencies section in Cargo.toml:

[dependencies]
ascii = "0.9"

Using ascii without libstd

Most of AsciiChar and AsciiStr can be used without std by disabling the default features. The owned string type AsciiString and the conversion trait IntoAsciiString as well as all methods referring to these types are unavailable. The Error trait is also unavailable, but description() is made available as an inherent method for ToAsciiCharError and AsAsciiStrError.

To use the ascii crate in core-only mode in your cargo project just add the following dependency declaration in Cargo.toml:

[dependencies]
ascii = { version = "0.9", default-features = false }

Requirements

  • The minimum supported Rust version is 1.9.0
  • Enabling the quickcheck feature requires Rust 1.12.0
  • Enabling the serde feature requires Rust 1.13.0

History

This package included the Ascii types that were removed from the Rust standard library by the 2014-12 reform of the std::ascii module. The API changed significantly since then.

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.