jetscii 0.1.0

A tiny library to efficiently search strings for ASCII characters
Build #7257 2016-08-04T20:49:40.540572+00:00
# rustc version
rustc 1.12.0-nightly (54c0dcfd6 2016-07-28)
# docs.rs version
cratesfyi 0.2.0 (5dbd676 2016-07-30)

# build log
Updating registry `https://github.com/rust-lang/crates.io-index`
Downloading jetscii v0.1.0
Documenting jetscii v0.1.0
Running `rustdoc .cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs --crate-name jetscii -o /home/cratesfyi/jetscii-0.1.0/doc -L dependency=/home/cratesfyi/jetscii-0.1.0/debug -L dependency=/home/cratesfyi/jetscii-0.1.0/debug/deps`
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:32:25: 32:32 error: use of unstable library feature 'pattern': API not fully fleshed out and ready to be stabilized (see issue #27721) 
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:32 use std::str::pattern::{Pattern,Searcher,SearchStep};
^~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:32:25: 32:32 help: add #![feature(pattern)] to the crate attributes to enable 
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:32:33: 32:41 error: use of unstable library feature 'pattern': API not fully fleshed out and ready to be stabilized (see issue #27721) 
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:32 use std::str::pattern::{Pattern,Searcher,SearchStep};
^~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:32:33: 32:41 help: add #![feature(pattern)] to the crate attributes to enable 
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:32:42: 32:52 error: use of unstable library feature 'pattern': API not fully fleshed out and ready to be stabilized (see issue #27721) 
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:32 use std::str::pattern::{Pattern,Searcher,SearchStep};
^~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:32:42: 32:52 help: add #![feature(pattern)] to the crate attributes to enable 
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:131:5: 131:44 error: use of unstable library feature 'pattern': API not fully fleshed out and ready to be stabilized (see issue #27721) 
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:131     type Searcher = AsciiCharsSearcher<'a>;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:131:5: 131:44 help: add #![feature(pattern)] to the crate attributes to enable 
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:133:5: 135:6 error: use of unstable library feature 'pattern': API not fully fleshed out and ready to be stabilized (see issue #27721) 
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:133     fn into_searcher(self, haystack: &'a str) -> AsciiCharsSearcher<'a> {
^
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:133:5: 135:6 help: add #![feature(pattern)] to the crate attributes to enable 
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:130:10: 130:21 error: use of unstable library feature 'pattern': API not fully fleshed out and ready to be stabilized (see issue #27721) 
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:130 impl<'a> Pattern<'a> for AsciiChars {
^~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:130:10: 130:21 help: add #![feature(pattern)] to the crate attributes to enable 
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:147:5: 147:52 error: use of unstable library feature 'pattern': API not fully fleshed out and ready to be stabilized (see issue #27721) 
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:147     fn haystack(&self) -> &'a str { self.haystack }
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:147:5: 147:52 help: add #![feature(pattern)] to the crate attributes to enable 
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:150:5: 172:6 error: use of unstable library feature 'pattern': API not fully fleshed out and ready to be stabilized (see issue #27721) 
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:150     fn next(&mut self) -> SearchStep {
^
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:150:5: 172:6 help: add #![feature(pattern)] to the crate attributes to enable 
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:146:17: 146:29 error: use of unstable library feature 'pattern': API not fully fleshed out and ready to be stabilized (see issue #27721) 
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:146 unsafe impl<'a> Searcher<'a> for AsciiCharsSearcher<'a> {
^~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:146:17: 146:29 help: add #![feature(pattern)] to the crate attributes to enable 
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:150:27: 150:37 error: use of unstable library feature 'pattern': API not fully fleshed out and ready to be stabilized (see issue #27721) 
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:150     fn next(&mut self) -> SearchStep {
^~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:150:27: 150:37 help: add #![feature(pattern)] to the crate attributes to enable 
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:151:56: 151:72 error: use of unstable library feature 'pattern': API not fully fleshed out and ready to be stabilized (see issue #27721) 
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:151         if self.offset >= self.haystack.len() { return SearchStep::Done }
^~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:151:56: 151:72 help: add #![feature(pattern)] to the crate attributes to enable 
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:163:14: 163:31 error: use of unstable library feature 'pattern': API not fully fleshed out and ready to be stabilized (see issue #27721) 
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:163             (SearchStep::Match(self.offset, next), next)
^~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:163:14: 163:31 help: add #![feature(pattern)] to the crate attributes to enable 
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:167:14: 167:32 error: use of unstable library feature 'pattern': API not fully fleshed out and ready to be stabilized (see issue #27721) 
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:167             (SearchStep::Reject(self.offset, next), next)
^~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs:167:14: 167:32 help: add #![feature(pattern)] to the crate attributes to enable 
error: Compilation failed, aborting rustdoc 
thread 'main' panicked at 'ChainedError {
error: failed to compile `jetscii v0.1.0`, intermediate artifacts can be found at `/home/cratesfyi/jetscii-0.1.0`,
cause: ChainedError {
error: Could not document `jetscii`.,
cause: Process didn't exit successfully: `rustdoc .cargo/registry/src/github.com-1ecc6299db9ec823/jetscii-0.1.0/src/lib.rs --crate-name jetscii -o /home/cratesfyi/jetscii-0.1.0/doc -L dependency=/home/cratesfyi/jetscii-0.1.0/debug -L dependency=/home/cratesfyi/jetscii-0.1.0/debug/deps` (exit code: 101)
}
}', src/bin/cratesfyi.rs:119
note: Run with `RUST_BACKTRACE=1` for a backtrace.