1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your // option. This file may not be copied, modified, or distributed // except according to those terms. //! A library that provides ASCII-only string and character types, equivalent to the `char`, `str` and //! `String` types in the standard library. //! //! # Using ascii without libstd //! //! Most of `AsciiChar` and `AsciiStr` can be used without `std` by enabling the feature `no_std`. The //! owned string type `AsciiString` and the conversion trait `IntoAsciiString` as well as all methods //! referring to these types aren't available without `std`. //! //! # Requirements //! //! The `ascii` library requires rustc 1.9.0 or greater, due to the [stabilization of //! `AsciiExt`](https://github.com/rust-lang/rust/pull/32804). Using the `no_std` feature lowers //! this requirement to rustc 1.6.0 or greater. //! //! # History //! //! This packages included the Ascii types that were removed from the Rust standard library by the //! 2014-12 [reform of the `std::ascii` module](https://github.com/rust-lang/rfcs/pull/486). The //! API changed significantly since then. #![cfg_attr(feature = "no_std", no_std)] mod ascii_char; mod ascii_str; #[cfg(not(feature = "no_std"))] mod ascii_string; pub use ascii_char::{AsciiChar, ToAsciiChar, ToAsciiCharError}; pub use ascii_str::{AsciiStr, AsAsciiStr, AsMutAsciiStr, AsAsciiStrError}; #[cfg(not(feature = "no_std"))] pub use ascii_string::{AsciiString, IntoAsciiString};