Build #96668 2018-04-21T08:15:34.320289+00:00
# rustc version
rustc 1.26.0-dev (0eb87c9bf 2018-03-16)# docs.rs version
cratesfyi 0.5.0 (579f83b 2018-03-05)# build log
Build failed, waiting for other jobs to finish...
Updating registry `https://github.com/rust-lang/crates.io-index`
Downloading rasen-dsl v0.2.0
Fresh cc v1.0.10
Fresh rustc-demangle v0.1.7
Fresh cfg-if v0.1.2
Fresh num-traits v0.2.2
Fresh ordermap v0.3.5
Fresh unicode-xid v0.0.4
Fresh fixedbitset v0.1.9
Fresh fnv v1.0.6
Fresh bitflags v1.0.1
Fresh unicode-xid v0.1.0
Fresh libc v0.2.40
Fresh synom v0.11.3
Fresh rustc-serialize v0.3.24
Fresh quote v0.3.15
Fresh num-integer v0.1.36
Fresh proc-macro2 v0.2.3
Fresh petgraph v0.4.12
Fresh rand v0.4.2
Fresh num-complex v0.1.43
Fresh syn v0.11.11
Fresh num-iter v0.1.35
Fresh quote v0.4.2
Fresh num-bigint v0.1.43
Fresh backtrace-sys v0.1.16
Fresh derive_more v0.7.1
Compiling rasen-dsl v0.2.0
Fresh syn v0.12.15
Fresh num-rational v0.1.42
Fresh backtrace v0.3.6
Running `rustc --crate-name build_script_build .cargo/registry/src/github.com-1ecc6299db9ec823/rasen-dsl-0.2.0/build.rs --crate-type bin --emit=dep-info,link -C debuginfo=2 --cfg 'feature="default"' -C metadata=6e4320d21373f5e5 -C extra-filename=-6e4320d21373f5e5 --out-dir /home/cratesfyi/cratesfyi/debug/build/rasen-dsl-6e4320d21373f5e5 -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern syn=/home/cratesfyi/cratesfyi/debug/deps/libsyn-e662069961d8f963.rlib --extern-version syn=syn,0.11.11 --extern quote=/home/cratesfyi/cratesfyi/debug/deps/libquote-983cfcbeae6039c8.rlib --extern-version quote=quote,0.3.15 --cap-lints allow`
Fresh num-derive v0.1.44
Fresh error-chain v0.10.0
Fresh num v0.1.42
Fresh spirv_headers v1.3.1
Fresh rspirv v0.5.2
Compiling rasen v0.12.0
Running `rustc --crate-name rasen .cargo/registry/src/github.com-1ecc6299db9ec823/rasen-0.12.0/src/lib.rs --crate-type lib --emit=dep-info,link -C debuginfo=2 --cfg 'feature="default"' -C metadata=d789d05eb2f28eda -C extra-filename=-d789d05eb2f28eda --out-dir /home/cratesfyi/cratesfyi/debug/deps -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern error_chain=/home/cratesfyi/cratesfyi/debug/deps/liberror_chain-9b52aae1a1d6504f.rlib --extern-version error_chain=error-chain,0.10.0 --extern spirv_headers=/home/cratesfyi/cratesfyi/debug/deps/libspirv_headers-79af84ebddddef9f.rlib --extern-version spirv_headers=spirv_headers,1.3.1 --extern petgraph=/home/cratesfyi/cratesfyi/debug/deps/libpetgraph-a75c9cbe92f9a72b.rlib --extern-version petgraph=petgraph,0.4.12 --extern rspirv=/home/cratesfyi/cratesfyi/debug/deps/librspirv-1683c21862ec1d22.rlib --extern-version rspirv=rspirv,0.5.2 --extern fnv=/home/cratesfyi/cratesfyi/debug/deps/libfnv-faa257ace9f05d30.rlib --extern-version fnv=fnv,1.0.6 --cap-lints allow -L native=/home/cratesfyi/cratesfyi/debug/build/backtrace-sys-b3fcd2d0e0ef0d28/out/.libs`
error[E0658]: use of unstable library feature 'try_from' (see issue #33417)
--> .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)
--> .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)
--> .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)
--> .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)
--> .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)
--> .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)
--> .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)
--> .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)
--> .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)
--> .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)
--> .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)
--> .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: aborting due to 12 previous errors
For more information about this error, try `rustc --explain E0658`.
error: Could not compile `rasen`.
Caused by:
process didn't exit successfully: `rustc --crate-name rasen .cargo/registry/src/github.com-1ecc6299db9ec823/rasen-0.12.0/src/lib.rs --crate-type lib --emit=dep-info,link -C debuginfo=2 --cfg feature="default" -C metadata=d789d05eb2f28eda -C extra-filename=-d789d05eb2f28eda --out-dir /home/cratesfyi/cratesfyi/debug/deps -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern error_chain=/home/cratesfyi/cratesfyi/debug/deps/liberror_chain-9b52aae1a1d6504f.rlib --extern-version error_chain=error-chain,0.10.0 --extern spirv_headers=/home/cratesfyi/cratesfyi/debug/deps/libspirv_headers-79af84ebddddef9f.rlib --extern-version spirv_headers=spirv_headers,1.3.1 --extern petgraph=/home/cratesfyi/cratesfyi/debug/deps/libpetgraph-a75c9cbe92f9a72b.rlib --extern-version petgraph=petgraph,0.4.12 --extern rspirv=/home/cratesfyi/cratesfyi/debug/deps/librspirv-1683c21862ec1d22.rlib --extern-version rspirv=rspirv,0.5.2 --extern fnv=/home/cratesfyi/cratesfyi/debug/deps/libfnv-faa257ace9f05d30.rlib --extern-version fnv=fnv,1.0.6 --cap-lints allow -L native=/home/cratesfyi/cratesfyi/debug/build/backtrace-sys-b3fcd2d0e0ef0d28/out/.libs` (exit code: 101)
thread 'main' panicked at 'Error(
CargoError(
build failed
),
State {
next_error: None,
backtrace: None
}
)', src/bin/cratesfyi.rs:142:13
note: Run with `RUST_BACKTRACE=1` for a backtrace.