[INFO] crate mint 0.5.1 is already in cache [INFO] extracting crate mint 0.5.1 into work/ex/beta-1.38-1/sources/1.37.0/reg/mint/0.5.1 [INFO] extracting crate mint 0.5.1 into work/ex/beta-1.38-1/sources/beta-2019-08-13/reg/mint/0.5.1 [INFO] validating manifest of mint-0.5.1 on toolchain 1.37.0 [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+1.37.0" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] validating manifest of mint-0.5.1 on toolchain beta-2019-08-13 [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+beta-2019-08-13" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started frobbing mint-0.5.1 [INFO] finished frobbing mint-0.5.1 [INFO] frobbed toml for mint-0.5.1 written to work/ex/beta-1.38-1/sources/1.37.0/reg/mint/0.5.1/Cargo.toml [INFO] started frobbing mint-0.5.1 [INFO] finished frobbing mint-0.5.1 [INFO] frobbed toml for mint-0.5.1 written to work/ex/beta-1.38-1/sources/beta-2019-08-13/reg/mint/0.5.1/Cargo.toml [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+1.37.0" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+beta-2019-08-13" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+1.37.0" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+beta-2019-08-13" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] testing mint-0.5.1 against 1.37.0 for beta-1.38-1 [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/beta-1.38-1/worker-2/1.37.0:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/beta-1.38-1/sources/1.37.0/reg/mint/0.5.1:/opt/crater/workdir:ro,Z" "-v" "/mnt/big/crater/work/local/cargo-home:/opt/crater/cargo-home:ro,Z" "-v" "/mnt/big/crater/work/local/rustup-home:/opt/crater/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/opt/crater/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/crater/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/crater/cargo-home" "-e" "RUSTUP_HOME=/opt/crater/rustup-home" "-w" "/opt/crater/workdir" "-m" "1536M" "--network" "none" "rustops/crates-build-env" "/opt/crater/cargo-home/bin/cargo" "+1.37.0" "build" "--frozen"` [INFO] [stdout] c54931e5f95d6d7982bbb041b13a6d41f99a12c2102048dc31c12a9c9a975f2a [INFO] running `"docker" "start" "-a" "c54931e5f95d6d7982bbb041b13a6d41f99a12c2102048dc31c12a9c9a975f2a"` [INFO] [stderr] Compiling mint v0.5.1 (/opt/crater/workdir) [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/matrix.rs:81:1 [INFO] [stderr] | [INFO] [stderr] 81 | /// 2x2 row-major matrix. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 82 | matrix!( RowMatrix2 : Vector2[x=0,y=1] = (2, 2)); [INFO] [stderr] | ------------------------------------------------- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = note: #[warn(unused_doc_comments)] on by default [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/matrix.rs:84:1 [INFO] [stderr] | [INFO] [stderr] 84 | / /// 2x3 row-major matrix. [INFO] [stderr] 85 | | /// Useful for combining rotation, scale, and translation in 2D space. [INFO] [stderr] | |______________________________________________________________________^ [INFO] [stderr] 86 | matrix!( RowMatrix2x3 : Vector3[x=0,y=1] = (3, 2)); [INFO] [stderr] | --------------------------------------------------- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/matrix.rs:88:1 [INFO] [stderr] | [INFO] [stderr] 88 | / /// 3x2 row-major matrix. [INFO] [stderr] 89 | | /// Useful for combining rotation, scale, and translation in 2D space. [INFO] [stderr] | |______________________________________________________________________^ [INFO] [stderr] 90 | matrix!( RowMatrix3x2 : Vector2[x=0,y=1,z=2] = (2, 3)); [INFO] [stderr] | ------------------------------------------------------- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/matrix.rs:92:1 [INFO] [stderr] | [INFO] [stderr] 92 | / /// 3x3 row-major matrix. [INFO] [stderr] 93 | | /// Useful for representing rotation and scale in 3D space. [INFO] [stderr] | |___________________________________________________________^ [INFO] [stderr] 94 | matrix!( RowMatrix3 : Vector3[x=0,y=1,z=2] = (3, 3)); [INFO] [stderr] | ----------------------------------------------------- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/matrix.rs:96:1 [INFO] [stderr] | [INFO] [stderr] 96 | / /// 3x4 row-major matrix. [INFO] [stderr] 97 | | /// Useful for combining rotation, scale, and translation in 3D space. [INFO] [stderr] | |______________________________________________________________________^ [INFO] [stderr] 98 | matrix!( RowMatrix3x4 : Vector4[x=0,y=1,z=2] = (4, 3)); [INFO] [stderr] | ------------------------------------------------------- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/matrix.rs:100:1 [INFO] [stderr] | [INFO] [stderr] 100 | / /// 4x3 row-major matrix. [INFO] [stderr] 101 | | /// Useful for combining rotation, scale, and translation in 3D space. [INFO] [stderr] | |______________________________________________________________________^ [INFO] [stderr] 102 | matrix!( RowMatrix4x3 : Vector3[x=0,y=1,z=2,w=3] = (3, 4)); [INFO] [stderr] | ----------------------------------------------------------- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/matrix.rs:104:1 [INFO] [stderr] | [INFO] [stderr] 104 | /// 4x4 row-major matrix. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 105 | matrix!( RowMatrix4 : Vector4[x=0,y=1,z=2,w=3] = (4, 4)); [INFO] [stderr] | --------------------------------------------------------- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/matrix.rs:108:1 [INFO] [stderr] | [INFO] [stderr] 108 | /// 2x2 column-major matrix. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 109 | matrix!( ColumnMatrix2 : Vector2[x=0,y=1] = (2, 2)); [INFO] [stderr] | ---------------------------------------------------- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/matrix.rs:111:1 [INFO] [stderr] | [INFO] [stderr] 111 | / /// 2x3 column-major matrix. [INFO] [stderr] 112 | | /// Useful for combining rotation, scale, and translation in 2D space. [INFO] [stderr] | |______________________________________________________________________^ [INFO] [stderr] 113 | matrix!( ColumnMatrix2x3 : Vector2[x=0,y=1,z=2] = (2, 3)); [INFO] [stderr] | ---------------------------------------------------------- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/matrix.rs:115:1 [INFO] [stderr] | [INFO] [stderr] 115 | / /// 3x2 column-major matrix. [INFO] [stderr] 116 | | /// Useful for combining rotation, scale, and translation in 2D space. [INFO] [stderr] | |______________________________________________________________________^ [INFO] [stderr] 117 | matrix!( ColumnMatrix3x2 : Vector3[x=0,y=1] = (3, 2)); [INFO] [stderr] | ------------------------------------------------------ rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/matrix.rs:119:1 [INFO] [stderr] | [INFO] [stderr] 119 | / /// 3x3 column-major matrix. [INFO] [stderr] 120 | | /// Useful for representing rotation and scale in 3D space. [INFO] [stderr] | |___________________________________________________________^ [INFO] [stderr] 121 | matrix!( ColumnMatrix3 : Vector3[x=0,y=1,z=2] = (3, 3)); [INFO] [stderr] | -------------------------------------------------------- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/matrix.rs:123:1 [INFO] [stderr] | [INFO] [stderr] 123 | / /// 3x4 column-major matrix. [INFO] [stderr] 124 | | /// Useful for combining rotation, scale, and translation in 3D space. [INFO] [stderr] | |______________________________________________________________________^ [INFO] [stderr] 125 | matrix!( ColumnMatrix3x4 : Vector3[x=0,y=1,z=2,w=3] = (3, 4)); [INFO] [stderr] | -------------------------------------------------------------- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/matrix.rs:127:1 [INFO] [stderr] | [INFO] [stderr] 127 | / /// 4x3 column-major matrix. [INFO] [stderr] 128 | | /// Useful for combining rotation, scale, and translation in 3D space. [INFO] [stderr] | |______________________________________________________________________^ [INFO] [stderr] 129 | matrix!( ColumnMatrix4x3 : Vector4[x=0,y=1,z=2] = (4, 3)); [INFO] [stderr] | ---------------------------------------------------------- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/matrix.rs:131:1 [INFO] [stderr] | [INFO] [stderr] 131 | /// 4x4 column-major matrix. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 132 | matrix!( ColumnMatrix4 : Vector4[x=0,y=1,z=2,w=3] = (4, 4)); [INFO] [stderr] | ------------------------------------------------------------ rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 1.32s [INFO] running `"docker" "inspect" "c54931e5f95d6d7982bbb041b13a6d41f99a12c2102048dc31c12a9c9a975f2a"` [INFO] running `"docker" "rm" "-f" "c54931e5f95d6d7982bbb041b13a6d41f99a12c2102048dc31c12a9c9a975f2a"` [INFO] [stdout] c54931e5f95d6d7982bbb041b13a6d41f99a12c2102048dc31c12a9c9a975f2a [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/beta-1.38-1/worker-2/1.37.0:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/beta-1.38-1/sources/1.37.0/reg/mint/0.5.1:/opt/crater/workdir:ro,Z" "-v" "/mnt/big/crater/work/local/cargo-home:/opt/crater/cargo-home:ro,Z" "-v" "/mnt/big/crater/work/local/rustup-home:/opt/crater/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/opt/crater/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/crater/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/crater/cargo-home" "-e" "RUSTUP_HOME=/opt/crater/rustup-home" "-w" "/opt/crater/workdir" "-m" "1536M" "--network" "none" "rustops/crates-build-env" "/opt/crater/cargo-home/bin/cargo" "+1.37.0" "test" "--frozen" "--no-run"` [INFO] [stdout] cf3f8c94f5b7f9ed9bab19e11ec7d9bb1ade964468683cf48583c860389f1177 [INFO] running `"docker" "start" "-a" "cf3f8c94f5b7f9ed9bab19e11ec7d9bb1ade964468683cf48583c860389f1177"` [INFO] [stderr] Compiling mint v0.5.1 (/opt/crater/workdir) [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/matrix.rs:81:1 [INFO] [stderr] | [INFO] [stderr] 81 | /// 2x2 row-major matrix. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 82 | matrix!( RowMatrix2 : Vector2[x=0,y=1] = (2, 2)); [INFO] [stderr] | ------------------------------------------------- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = note: #[warn(unused_doc_comments)] on by default [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/matrix.rs:84:1 [INFO] [stderr] | [INFO] [stderr] 84 | / /// 2x3 row-major matrix. [INFO] [stderr] 85 | | /// Useful for combining rotation, scale, and translation in 2D space. [INFO] [stderr] | |______________________________________________________________________^ [INFO] [stderr] 86 | matrix!( RowMatrix2x3 : Vector3[x=0,y=1] = (3, 2)); [INFO] [stderr] | --------------------------------------------------- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/matrix.rs:88:1 [INFO] [stderr] | [INFO] [stderr] 88 | / /// 3x2 row-major matrix. [INFO] [stderr] 89 | | /// Useful for combining rotation, scale, and translation in 2D space. [INFO] [stderr] | |______________________________________________________________________^ [INFO] [stderr] 90 | matrix!( RowMatrix3x2 : Vector2[x=0,y=1,z=2] = (2, 3)); [INFO] [stderr] | ------------------------------------------------------- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/matrix.rs:92:1 [INFO] [stderr] | [INFO] [stderr] 92 | / /// 3x3 row-major matrix. [INFO] [stderr] 93 | | /// Useful for representing rotation and scale in 3D space. [INFO] [stderr] | |___________________________________________________________^ [INFO] [stderr] 94 | matrix!( RowMatrix3 : Vector3[x=0,y=1,z=2] = (3, 3)); [INFO] [stderr] | ----------------------------------------------------- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/matrix.rs:96:1 [INFO] [stderr] | [INFO] [stderr] 96 | / /// 3x4 row-major matrix. [INFO] [stderr] 97 | | /// Useful for combining rotation, scale, and translation in 3D space. [INFO] [stderr] | |______________________________________________________________________^ [INFO] [stderr] 98 | matrix!( RowMatrix3x4 : Vector4[x=0,y=1,z=2] = (4, 3)); [INFO] [stderr] | ------------------------------------------------------- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/matrix.rs:100:1 [INFO] [stderr] | [INFO] [stderr] 100 | / /// 4x3 row-major matrix. [INFO] [stderr] 101 | | /// Useful for combining rotation, scale, and translation in 3D space. [INFO] [stderr] | |______________________________________________________________________^ [INFO] [stderr] 102 | matrix!( RowMatrix4x3 : Vector3[x=0,y=1,z=2,w=3] = (3, 4)); [INFO] [stderr] | ----------------------------------------------------------- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/matrix.rs:104:1 [INFO] [stderr] | [INFO] [stderr] 104 | /// 4x4 row-major matrix. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 105 | matrix!( RowMatrix4 : Vector4[x=0,y=1,z=2,w=3] = (4, 4)); [INFO] [stderr] | --------------------------------------------------------- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/matrix.rs:108:1 [INFO] [stderr] | [INFO] [stderr] 108 | /// 2x2 column-major matrix. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 109 | matrix!( ColumnMatrix2 : Vector2[x=0,y=1] = (2, 2)); [INFO] [stderr] | ---------------------------------------------------- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/matrix.rs:111:1 [INFO] [stderr] | [INFO] [stderr] 111 | / /// 2x3 column-major matrix. [INFO] [stderr] 112 | | /// Useful for combining rotation, scale, and translation in 2D space. [INFO] [stderr] | |______________________________________________________________________^ [INFO] [stderr] 113 | matrix!( ColumnMatrix2x3 : Vector2[x=0,y=1,z=2] = (2, 3)); [INFO] [stderr] | ---------------------------------------------------------- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/matrix.rs:115:1 [INFO] [stderr] | [INFO] [stderr] 115 | / /// 3x2 column-major matrix. [INFO] [stderr] 116 | | /// Useful for combining rotation, scale, and translation in 2D space. [INFO] [stderr] | |______________________________________________________________________^ [INFO] [stderr] 117 | matrix!( ColumnMatrix3x2 : Vector3[x=0,y=1] = (3, 2)); [INFO] [stderr] | ------------------------------------------------------ rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/matrix.rs:119:1 [INFO] [stderr] | [INFO] [stderr] 119 | / /// 3x3 column-major matrix. [INFO] [stderr] 120 | | /// Useful for representing rotation and scale in 3D space. [INFO] [stderr] | |___________________________________________________________^ [INFO] [stderr] 121 | matrix!( ColumnMatrix3 : Vector3[x=0,y=1,z=2] = (3, 3)); [INFO] [stderr] | -------------------------------------------------------- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/matrix.rs:123:1 [INFO] [stderr] | [INFO] [stderr] 123 | / /// 3x4 column-major matrix. [INFO] [stderr] 124 | | /// Useful for combining rotation, scale, and translation in 3D space. [INFO] [stderr] | |______________________________________________________________________^ [INFO] [stderr] 125 | matrix!( ColumnMatrix3x4 : Vector3[x=0,y=1,z=2,w=3] = (3, 4)); [INFO] [stderr] | -------------------------------------------------------------- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/matrix.rs:127:1 [INFO] [stderr] | [INFO] [stderr] 127 | / /// 4x3 column-major matrix. [INFO] [stderr] 128 | | /// Useful for combining rotation, scale, and translation in 3D space. [INFO] [stderr] | |______________________________________________________________________^ [INFO] [stderr] 129 | matrix!( ColumnMatrix4x3 : Vector4[x=0,y=1,z=2] = (4, 3)); [INFO] [stderr] | ---------------------------------------------------------- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/matrix.rs:131:1 [INFO] [stderr] | [INFO] [stderr] 131 | /// 4x4 column-major matrix. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 132 | matrix!( ColumnMatrix4 : Vector4[x=0,y=1,z=2,w=3] = (4, 4)); [INFO] [stderr] | ------------------------------------------------------------ rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 2.11s [INFO] running `"docker" "inspect" "cf3f8c94f5b7f9ed9bab19e11ec7d9bb1ade964468683cf48583c860389f1177"` [INFO] running `"docker" "rm" "-f" "cf3f8c94f5b7f9ed9bab19e11ec7d9bb1ade964468683cf48583c860389f1177"` [INFO] [stdout] cf3f8c94f5b7f9ed9bab19e11ec7d9bb1ade964468683cf48583c860389f1177 [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/beta-1.38-1/worker-2/1.37.0:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/beta-1.38-1/sources/1.37.0/reg/mint/0.5.1:/opt/crater/workdir:ro,Z" "-v" "/mnt/big/crater/work/local/cargo-home:/opt/crater/cargo-home:ro,Z" "-v" "/mnt/big/crater/work/local/rustup-home:/opt/crater/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/opt/crater/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/crater/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/crater/cargo-home" "-e" "RUSTUP_HOME=/opt/crater/rustup-home" "-w" "/opt/crater/workdir" "-m" "1536M" "--network" "none" "rustops/crates-build-env" "/opt/crater/cargo-home/bin/cargo" "+1.37.0" "test" "--frozen"` [INFO] [stdout] 38d2113f7518c3bf35248a848894e097a6834a13ee02f35cfb3111b346a4ed69 [INFO] running `"docker" "start" "-a" "38d2113f7518c3bf35248a848894e097a6834a13ee02f35cfb3111b346a4ed69"` [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 0.02s [INFO] [stderr] Running /opt/crater/target/debug/deps/mint-59eb1e6c443e8672 [INFO] [stdout] [INFO] [stdout] running 0 tests [INFO] [stdout] [INFO] [stdout] test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out [INFO] [stdout] [INFO] [stderr] Running /opt/crater/target/debug/deps/tests-db427fdd2e1919a4 [INFO] [stdout] [INFO] [stdout] running 5 tests [INFO] [stdout] test rotation ... ok [INFO] [stdout] test column_matrix ... ok [INFO] [stdout] test turn ... ok [INFO] [stdout] test row_matrix ... ok [INFO] [stdout] test vector ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 5 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out [INFO] [stdout] [INFO] [stderr] Doc-tests mint [INFO] [stdout] [INFO] [stdout] running 0 tests [INFO] [stdout] [INFO] [stdout] test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out [INFO] [stdout] [INFO] running `"docker" "inspect" "38d2113f7518c3bf35248a848894e097a6834a13ee02f35cfb3111b346a4ed69"` [INFO] running `"docker" "rm" "-f" "38d2113f7518c3bf35248a848894e097a6834a13ee02f35cfb3111b346a4ed69"` [INFO] [stdout] 38d2113f7518c3bf35248a848894e097a6834a13ee02f35cfb3111b346a4ed69