Closed
Description
Here's the build log:
https://docs.rs/crate/regex/1.3.0/builds/182874
I can't seem to make sense of the error and I can't reproduce it, even after installing the same version of Rust nightly as used on docs.rs:
$ rustc --version
rustc 1.39.0-nightly (bea0372a1 2019-08-20)
$ cargo build
Compiling memchr v2.2.1
Compiling lazy_static v1.4.0
Compiling regex-syntax v0.6.12 (/home/andrew/code/rust/regex/regex-syntax)
Compiling thread_local v0.3.6
Compiling aho-corasick v0.7.6
Compiling regex v1.3.0 (/home/andrew/code/rust/regex)
Finished dev [unoptimized + debuginfo] target(s) in 6.17s
$ cargo doc
Documenting lazy_static v1.4.0
Checking lazy_static v1.4.0
Documenting regex-syntax v0.6.12 (/home/andrew/code/rust/regex/regex-syntax)
Checking regex-syntax v0.6.12 (/home/andrew/code/rust/regex/regex-syntax)
Documenting memchr v2.2.1
Checking memchr v2.2.1
Checking thread_local v0.3.6
Checking aho-corasick v0.7.6
Documenting thread_local v0.3.6
Documenting aho-corasick v0.7.6
Documenting regex v1.3.0 (/home/andrew/code/rust/regex)
Finished dev [unoptimized + debuginfo] target(s) in 4.46s
Any ideas on how to debug this?