Build #122906 2018-10-23T10:57:49.264301+00:00
# rustc version
rustc 1.31.0-nightly (78ff609d7 2018-10-19)# docs.rs version
cratesfyi 0.6.0 (401be1e 2018-10-20)# build log
Updating crates.io index
Downloading crates ...
Downloaded clippy v0.0.177
Fresh libc v0.2.43
Fresh unicode-xid v0.1.0
Fresh rustc-serialize v0.3.24
Fresh cc v1.0.25
Fresh unicode-xid v0.0.4
Fresh quote v0.3.15
Fresh rustc-demangle v0.1.9
Fresh cfg-if v0.1.6
Fresh bitflags v1.0.4
Fresh ordermap v0.3.5
Fresh fixedbitset v0.1.9
Fresh fnv v1.0.6
Fresh rand v0.4.3
Fresh proc-macro2 v0.2.3
Fresh synom v0.11.3
Fresh petgraph v0.4.13
Fresh num-traits v0.2.6
Fresh quote v0.4.2
Fresh syn v0.11.11
Fresh num-integer v0.1.39
Fresh num-complex v0.1.43
Fresh syn v0.12.15
Fresh backtrace-sys v0.1.24
Fresh derive_more v0.7.1
Fresh num-bigint v0.1.44
Fresh num-iter v0.1.37
Fresh num-derive v0.1.44
Fresh backtrace v0.3.9
Fresh num-rational v0.1.42
Fresh error-chain v0.10.0
Fresh num v0.1.42
Fresh spirv_headers v1.3.4
Fresh rspirv v0.5.4
Documenting rasen v0.12.0
Running `rustdoc --crate-name rasen /home/cratesfyi/.cargo/registry/src/github.com-1ecc6299db9ec823/rasen-0.12.0/src/lib.rs --cap-lints allow --color never -o /home/cratesfyi/cratesfyi/doc --cfg 'feature="default"' -Z unstable-options --resource-suffix -20181019-1.31.0-nightly-78ff609d7 --extern-html-root-url 'spirv_headers=https://docs.rs/spirv_headers/1.3.4' --extern-html-root-url 'petgraph=https://docs.rs/petgraph/0.4.13' --extern-html-root-url 'fnv=https://docs.rs/fnv/1.0.6' --extern-html-root-url 'rspirv=https://docs.rs/rspirv/0.5.4' --extern-html-root-url 'quote=https://docs.rs/quote/0.3.15' --extern-html-root-url 'pretty_assertions=https://docs.rs/pretty_assertions/0.5.1' --extern-html-root-url 'error_chain=https://docs.rs/error-chain/0.10.0' --extern-html-root-url 'clippy=https://docs.rs/clippy/0.0.177' -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern error_chain=/home/cratesfyi/cratesfyi/debug/deps/liberror_chain-546da319fda358c5.rmeta --extern fnv=/home/cratesfyi/cratesfyi/debug/deps/libfnv-d4c7d7786cb19631.rmeta --extern petgraph=/home/cratesfyi/cratesfyi/debug/deps/libpetgraph-2a61a396557f17b2.rmeta --extern rspirv=/home/cratesfyi/cratesfyi/debug/deps/librspirv-55cea08b16413f7d.rmeta --extern spirv_headers=/home/cratesfyi/cratesfyi/debug/deps/libspirv_headers-13d48015f119f3c3.rmeta`
error[E0658]: use of unstable library feature 'try_from' (see issue #33417)
--> /home/cratesfyi/.cargo/registry/src/github.com-1ecc6299db9ec823/rasen-0.12.0/src/builder/module.rs:2:5
|
2 | use std::convert::TryFrom;
| ^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(try_from)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'try_from' (see issue #33417)
--> /home/cratesfyi/.cargo/registry/src/github.com-1ecc6299db9ec823/rasen-0.12.0/src/builder/module.rs:773:5
|
773 | type Error = Error;
| ^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(try_from)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'try_from' (see issue #33417)
--> /home/cratesfyi/.cargo/registry/src/github.com-1ecc6299db9ec823/rasen-0.12.0/src/builder/module.rs:774:5
|
774 | / fn try_from((graph, mod_type): (&'a Graph, ShaderType)) -> Result<ModuleBuilder> {
775 | | ModuleBuilder::from_graph(graph, mod_type)
776 | | }
| |_____^
|
= help: add #![feature(try_from)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'try_from' (see issue #33417)
--> /home/cratesfyi/.cargo/registry/src/github.com-1ecc6299db9ec823/rasen-0.12.0/src/builder/module.rs:772:10
|
772 | impl<'a> TryFrom<(&'a Graph, ShaderType)> for ModuleBuilder {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(try_from)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'try_from' (see issue #33417)
--> /home/cratesfyi/.cargo/registry/src/github.com-1ecc6299db9ec823/rasen-0.12.0/src/builder/module.rs:780:5
|
780 | type Error = Error;
| ^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(try_from)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'try_from' (see issue #33417)
--> /home/cratesfyi/.cargo/registry/src/github.com-1ecc6299db9ec823/rasen-0.12.0/src/builder/module.rs:781:5
|
781 | / fn try_from((module, mod_type): (&'a RasenModule, ShaderType)) -> Result<ModuleBuilder> {
782 | | ModuleBuilder::from_module(module, mod_type)
783 | | }
| |_____^
|
= help: add #![feature(try_from)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'try_from' (see issue #33417)
--> /home/cratesfyi/.cargo/registry/src/github.com-1ecc6299db9ec823/rasen-0.12.0/src/builder/module.rs:779:10
|
779 | impl<'a> TryFrom<(&'a RasenModule, ShaderType)> for ModuleBuilder {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(try_from)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'try_from' (see issue #33417)
--> /home/cratesfyi/.cargo/registry/src/github.com-1ecc6299db9ec823/rasen-0.12.0/src/prelude.rs:3:5
|
3 | use std::convert::TryFrom;
| ^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(try_from)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'try_from' (see issue #33417)
--> /home/cratesfyi/.cargo/registry/src/github.com-1ecc6299db9ec823/rasen-0.12.0/src/prelude.rs:18:105
|
18 | pub fn build_program<'a, I>(graph: &'a I, mod_type: ShaderType) -> Result<Vec<u8>> where ModuleBuilder: TryFrom<(&'a I, ShaderType), Error = Error> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(try_from)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'try_from' (see issue #33417)
--> /home/cratesfyi/.cargo/registry/src/github.com-1ecc6299db9ec823/rasen-0.12.0/src/prelude.rs:24:113
|
24 | pub fn build_program_assembly<'a, I>(graph: &'a I, mod_type: ShaderType) -> Result<String> where ModuleBuilder: TryFrom<(&'a I, ShaderType), Error = Error> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(try_from)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'try_from' (see issue #33417)
--> /home/cratesfyi/.cargo/registry/src/github.com-1ecc6299db9ec823/rasen-0.12.0/src/prelude.rs:18:134
|
18 | pub fn build_program<'a, I>(graph: &'a I, mod_type: ShaderType) -> Result<Vec<u8>> where ModuleBuilder: TryFrom<(&'a I, ShaderType), Error = Error> {
| ^^^^^^^^^^^^^
|
= help: add #![feature(try_from)] to the crate attributes to enable
error[E0658]: use of unstable library feature 'try_from' (see issue #33417)
--> /home/cratesfyi/.cargo/registry/src/github.com-1ecc6299db9ec823/rasen-0.12.0/src/prelude.rs:24:142
|
24 | pub fn build_program_assembly<'a, I>(graph: &'a I, mod_type: ShaderType) -> Result<String> where ModuleBuilder: TryFrom<(&'a I, ShaderType), Error = Error> {
| ^^^^^^^^^^^^^
|
= help: add #![feature(try_from)] to the crate attributes to enable
error: Compilation failed, aborting rustdoc
thread 'main' panicked at 'ProcessError { desc: "process didn\'t exit successfully: `rustdoc --crate-name rasen /home/cratesfyi/.cargo/registry/src/github.com-1ecc6299db9ec823/rasen-0.12.0/src/lib.rs --cap-lints allow --color never -o /home/cratesfyi/cratesfyi/doc --cfg \'feature=\"default\"\' -Z unstable-options --resource-suffix -20181019-1.31.0-nightly-78ff609d7 --extern-html-root-url \'spirv_headers=https://docs.rs/spirv_headers/1.3.4\' --extern-html-root-url \'petgraph=https://docs.rs/petgraph/0.4.13\' --extern-html-root-url \'fnv=https://docs.rs/fnv/1.0.6\' --extern-html-root-url \'rspirv=https://docs.rs/rspirv/0.5.4\' --extern-html-root-url \'quote=https://docs.rs/quote/0.3.15\' --extern-html-root-url \'pretty_assertions=https://docs.rs/pretty_assertions/0.5.1\' --extern-html-root-url \'error_chain=https://docs.rs/error-chain/0.10.0\' --extern-html-root-url \'clippy=https://docs.rs/clippy/0.0.177\' -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern error_chain=/home/cratesfyi/cratesfyi/debug/deps/liberror_chain-546da319fda358c5.rmeta --extern fnv=/home/cratesfyi/cratesfyi/debug/deps/libfnv-d4c7d7786cb19631.rmeta --extern petgraph=/home/cratesfyi/cratesfyi/debug/deps/libpetgraph-2a61a396557f17b2.rmeta --extern rspirv=/home/cratesfyi/cratesfyi/debug/deps/librspirv-55cea08b16413f7d.rmeta --extern spirv_headers=/home/cratesfyi/cratesfyi/debug/deps/libspirv_headers-13d48015f119f3c3.rmeta` (exit code: 1)", exit: Some(ExitStatus(ExitStatus(256))), output: None }
Could not document `rasen`.', src/bin/cratesfyi.rs:142:13
note: Run with `RUST_BACKTRACE=1` for a backtrace.