[INFO] fetching crate sql 0.4.3... [INFO] testing sql-0.4.3 against beta-2022-04-10 for beta-1.61-1 [INFO] extracting crate sql 0.4.3 into /workspace/builds/worker-11/source [INFO] validating manifest of crates.io crate sql 0.4.3 on toolchain beta-2022-04-10 [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta-2022-04-10" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] started tweaking crates.io crate sql 0.4.3 [INFO] finished tweaking crates.io crate sql 0.4.3 [INFO] tweaked toml for crates.io crate sql 0.4.3 written to /workspace/builds/worker-11/source/Cargo.toml [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta-2022-04-10" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update", kill_on_drop: false }` [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta-2022-04-10" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-11/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-11/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:b0c94ce3c1162fcb8e57cac5b65ec2f72eabb1eebea4fcc35e269e823f681646" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-04-10" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] 61e1d610b435a1fd52086580f3da45157e70e9bf09b89050e9d921244faeec87 [INFO] running `Command { std: "docker" "start" "-a" "61e1d610b435a1fd52086580f3da45157e70e9bf09b89050e9d921244faeec87", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "61e1d610b435a1fd52086580f3da45157e70e9bf09b89050e9d921244faeec87", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "61e1d610b435a1fd52086580f3da45157e70e9bf09b89050e9d921244faeec87", kill_on_drop: false }` [INFO] [stdout] 61e1d610b435a1fd52086580f3da45157e70e9bf09b89050e9d921244faeec87 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-11/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-11/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:b0c94ce3c1162fcb8e57cac5b65ec2f72eabb1eebea4fcc35e269e823f681646" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-04-10" "build" "--frozen" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] b50301b5b4ae320c2b76cbc46bc9f9626b886b2c7837734e5f0a2195be1cbf60 [INFO] running `Command { std: "docker" "start" "-a" "b50301b5b4ae320c2b76cbc46bc9f9626b886b2c7837734e5f0a2195be1cbf60", kill_on_drop: false }` [INFO] [stderr] Compiling sql v0.4.3 (/opt/rustwide/workdir) [INFO] [stdout] warning: anonymous parameters are deprecated and will be removed in the next edition [INFO] [stdout] --> src/grammar/clause/order_by.rs:26:20 [INFO] [stdout] | [INFO] [stdout] 26 | fn order(self, Option) -> Self::Output; [INFO] [stdout] | ^^^^^^^^^^^^^ help: try naming the parameter or explicitly ignoring it: `_: Option` [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(anonymous_parameters)]` on by default [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018! [INFO] [stdout] = note: for more information, see issue #41686 [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stdout] --> src/grammar/clause/order_by.rs:51:25 [INFO] [stdout] | [INFO] [stdout] 51 | buffer.push(try!(expression.compile())); [INFO] [stdout] | ^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(deprecated)]` on by default [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stdout] --> src/grammar/clause/order_by.rs:77:20 [INFO] [stdout] | [INFO] [stdout] 77 | let main = try!(self.0.compile()); [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stdout] --> src/grammar/clause/where.rs:22:25 [INFO] [stdout] | [INFO] [stdout] 22 | buffer.push(try!(condition.compile())); [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lib.rs:108:50 [INFO] [stdout] | [INFO] [stdout] 108 | return Err(::Error($message.to_string())); [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] ::: src/grammar/definition/column.rs:41:37 [INFO] [stdout] | [INFO] [stdout] 41 | buffer.push(format!("`{}`", some!(self.name))); [INFO] [stdout] | ---------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(semicolon_in_expressions_from_macros)]` on by default [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lib.rs:108:50 [INFO] [stdout] | [INFO] [stdout] 108 | return Err(::Error($message.to_string())); [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] ::: src/grammar/definition/column.rs:42:27 [INFO] [stdout] | [INFO] [stdout] 42 | buffer.push(match some!(self.kind) { [INFO] [stdout] | ---------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lib.rs:108:50 [INFO] [stdout] | [INFO] [stdout] 108 | return Err(::Error($message.to_string())); [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] ::: src/grammar/definition/column.rs:57:28 [INFO] [stdout] | [INFO] [stdout] 57 | Ok(format!("`{}`", some!(self.name))) [INFO] [stdout] | ---------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: anonymous parameters are deprecated and will be removed in the next edition [INFO] [stdout] --> src/grammar/operation/like.rs:14:32 [INFO] [stdout] | [INFO] [stdout] 14 | fn like(self, T) -> Like; [INFO] [stdout] | ^ help: try naming the parameter or explicitly ignoring it: `_: T` [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018! [INFO] [stdout] = note: for more information, see issue #41686 [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stdout] --> src/grammar/operation/like.rs:27:36 [INFO] [stdout] | [INFO] [stdout] 27 | Ok(format!("{} LIKE '{}'", try!(self.0.compile()), self.1)) [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lib.rs:108:50 [INFO] [stdout] | [INFO] [stdout] 108 | return Err(::Error($message.to_string())); [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] ::: src/grammar/statement/create_table.rs:54:37 [INFO] [stdout] | [INFO] [stdout] 54 | buffer.push(format!("`{}`", some!(self.name))); [INFO] [stdout] | ---------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lib.rs:108:50 [INFO] [stdout] | [INFO] [stdout] 108 | return Err(::Error($message.to_string())); [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] ::: src/grammar/statement/create_table.rs:57:27 [INFO] [stdout] | [INFO] [stdout] 57 | for column in some!(self.columns) { [INFO] [stdout] | ------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stdout] --> src/grammar/statement/create_table.rs:58:29 [INFO] [stdout] | [INFO] [stdout] 58 | buffer.push(try!(column.compile())); [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lib.rs:108:50 [INFO] [stdout] | [INFO] [stdout] 108 | return Err(::Error($message.to_string())); [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] ::: src/grammar/statement/delete.rs:28:37 [INFO] [stdout] | [INFO] [stdout] 28 | buffer.push(format!("`{}`", some!(self.table))); [INFO] [stdout] | ----------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lib.rs:108:50 [INFO] [stdout] | [INFO] [stdout] 108 | return Err(::Error($message.to_string())); [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] ::: src/grammar/statement/insert.rs:50:37 [INFO] [stdout] | [INFO] [stdout] 50 | buffer.push(format!("`{}`", some!(self.table))); [INFO] [stdout] | ----------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lib.rs:108:50 [INFO] [stdout] | [INFO] [stdout] 108 | return Err(::Error($message.to_string())); [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] ::: src/grammar/statement/insert.rs:54:31 [INFO] [stdout] | [INFO] [stdout] 54 | for column in some!(self.columns) { [INFO] [stdout] | ------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lib.rs:108:50 [INFO] [stdout] | [INFO] [stdout] 108 | return Err(::Error($message.to_string())); [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] ::: src/grammar/statement/select.rs:83:37 [INFO] [stdout] | [INFO] [stdout] 83 | buffer.push(format!("`{}`", some!(self.table))); [INFO] [stdout] | ----------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stdout] --> src/grammar/statement/select.rs:85:25 [INFO] [stdout] | [INFO] [stdout] 85 | buffer.push(try!(clause.compile())); [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stdout] --> src/grammar/statement/select.rs:88:25 [INFO] [stdout] | [INFO] [stdout] 88 | buffer.push(try!(clause.compile())); [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/grammar/clause/order_by.rs:9:28 [INFO] [stdout] | [INFO] [stdout] 9 | pub struct OrderBy(Vec>); [INFO] [stdout] | ^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 9 - pub struct OrderBy(Vec>); [INFO] [stdout] 9 + pub struct OrderBy(Vec>); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/grammar/clause/where.rs:8:26 [INFO] [stdout] | [INFO] [stdout] 8 | pub struct Where(Vec>); [INFO] [stdout] | ^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 8 - pub struct Where(Vec>); [INFO] [stdout] 8 + pub struct Where(Vec>); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/grammar/operation/like.rs:9:21 [INFO] [stdout] | [INFO] [stdout] 9 | pub struct Like(Box, String); [INFO] [stdout] | ^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 9 - pub struct Like(Box, String); [INFO] [stdout] 9 + pub struct Like(Box, String); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 21 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 0.94s [INFO] running `Command { std: "docker" "inspect" "b50301b5b4ae320c2b76cbc46bc9f9626b886b2c7837734e5f0a2195be1cbf60", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "b50301b5b4ae320c2b76cbc46bc9f9626b886b2c7837734e5f0a2195be1cbf60", kill_on_drop: false }` [INFO] [stdout] b50301b5b4ae320c2b76cbc46bc9f9626b886b2c7837734e5f0a2195be1cbf60 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-11/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-11/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:b0c94ce3c1162fcb8e57cac5b65ec2f72eabb1eebea4fcc35e269e823f681646" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-04-10" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 5717b02bb125a06d96fce0ac438f2909fea59ad4e0ad600bd2140db73cc14528 [INFO] running `Command { std: "docker" "start" "-a" "5717b02bb125a06d96fce0ac438f2909fea59ad4e0ad600bd2140db73cc14528", kill_on_drop: false }` [INFO] [stdout] warning: anonymous parameters are deprecated and will be removed in the next edition [INFO] [stdout] --> src/grammar/clause/order_by.rs:26:20 [INFO] [stdout] | [INFO] [stdout] 26 | fn order(self, Option) -> Self::Output; [INFO] [stdout] | ^^^^^^^^^^^^^ help: try naming the parameter or explicitly ignoring it: `_: Option` [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(anonymous_parameters)]` on by default [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018! [INFO] [stdout] = note: for more information, see issue #41686 [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stdout] --> src/grammar/clause/order_by.rs:51:25 [INFO] [stdout] | [INFO] [stdout] 51 | buffer.push(try!(expression.compile())); [INFO] [stdout] | ^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(deprecated)]` on by default [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stdout] --> src/grammar/clause/order_by.rs:77:20 [INFO] [stdout] | [INFO] [stdout] 77 | let main = try!(self.0.compile()); [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stdout] --> src/grammar/clause/where.rs:22:25 [INFO] [stdout] | [INFO] [stdout] 22 | buffer.push(try!(condition.compile())); [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lib.rs:108:50 [INFO] [stdout] | [INFO] [stdout] 108 | return Err(::Error($message.to_string())); [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] ::: src/grammar/definition/column.rs:41:37 [INFO] [stdout] | [INFO] [stdout] 41 | buffer.push(format!("`{}`", some!(self.name))); [INFO] [stdout] | ---------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(semicolon_in_expressions_from_macros)]` on by default [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lib.rs:108:50 [INFO] [stdout] | [INFO] [stdout] 108 | return Err(::Error($message.to_string())); [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] ::: src/grammar/definition/column.rs:42:27 [INFO] [stdout] | [INFO] [stdout] 42 | buffer.push(match some!(self.kind) { [INFO] [stdout] | ---------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lib.rs:108:50 [INFO] [stdout] | [INFO] [stdout] 108 | return Err(::Error($message.to_string())); [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] ::: src/grammar/definition/column.rs:57:28 [INFO] [stdout] | [INFO] [stdout] 57 | Ok(format!("`{}`", some!(self.name))) [INFO] [stdout] | ---------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: anonymous parameters are deprecated and will be removed in the next edition [INFO] [stdout] --> src/grammar/operation/like.rs:14:32 [INFO] [stdout] | [INFO] [stdout] 14 | fn like(self, T) -> Like; [INFO] [stdout] | ^ help: try naming the parameter or explicitly ignoring it: `_: T` [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018! [INFO] [stdout] = note: for more information, see issue #41686 [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stdout] --> src/grammar/operation/like.rs:27:36 [INFO] [stdout] | [INFO] [stdout] 27 | Ok(format!("{} LIKE '{}'", try!(self.0.compile()), self.1)) [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lib.rs:108:50 [INFO] [stdout] | [INFO] [stdout] 108 | return Err(::Error($message.to_string())); [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] ::: src/grammar/statement/create_table.rs:54:37 [INFO] [stdout] | [INFO] [stdout] 54 | buffer.push(format!("`{}`", some!(self.name))); [INFO] [stdout] | ---------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lib.rs:108:50 [INFO] [stdout] | [INFO] [stdout] 108 | return Err(::Error($message.to_string())); [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] ::: src/grammar/statement/create_table.rs:57:27 [INFO] [stdout] | [INFO] [stdout] 57 | for column in some!(self.columns) { [INFO] [stdout] | ------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stdout] --> src/grammar/statement/create_table.rs:58:29 [INFO] [stdout] | [INFO] [stdout] 58 | buffer.push(try!(column.compile())); [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lib.rs:108:50 [INFO] [stdout] | [INFO] [stdout] 108 | return Err(::Error($message.to_string())); [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] ::: src/grammar/statement/delete.rs:28:37 [INFO] [stdout] | [INFO] [stdout] 28 | buffer.push(format!("`{}`", some!(self.table))); [INFO] [stdout] | ----------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lib.rs:108:50 [INFO] [stdout] | [INFO] [stdout] 108 | return Err(::Error($message.to_string())); [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] ::: src/grammar/statement/insert.rs:50:37 [INFO] [stdout] | [INFO] [stdout] 50 | buffer.push(format!("`{}`", some!(self.table))); [INFO] [stdout] | ----------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lib.rs:108:50 [INFO] [stdout] | [INFO] [stdout] 108 | return Err(::Error($message.to_string())); [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] ::: src/grammar/statement/insert.rs:54:31 [INFO] [stdout] | [INFO] [stdout] 54 | for column in some!(self.columns) { [INFO] [stdout] | ------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lib.rs:108:50 [INFO] [stdout] | [INFO] [stdout] 108 | return Err(::Error($message.to_string())); [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] ::: src/grammar/statement/select.rs:83:37 [INFO] [stdout] | [INFO] [stdout] 83 | buffer.push(format!("`{}`", some!(self.table))); [INFO] [stdout] | ----------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stdout] --> src/grammar/statement/select.rs:85:25 [INFO] [stdout] | [INFO] [stdout] 85 | buffer.push(try!(clause.compile())); [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stdout] --> src/grammar/statement/select.rs:88:25 [INFO] [stdout] | [INFO] [stdout] 88 | buffer.push(try!(clause.compile())); [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/grammar/clause/order_by.rs:9:28 [INFO] [stdout] | [INFO] [stdout] 9 | pub struct OrderBy(Vec>); [INFO] [stdout] | ^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 9 - pub struct OrderBy(Vec>); [INFO] [stdout] 9 + pub struct OrderBy(Vec>); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Compiling sql v0.4.3 (/opt/rustwide/workdir) [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/grammar/clause/where.rs:8:26 [INFO] [stdout] | [INFO] [stdout] 8 | pub struct Where(Vec>); [INFO] [stdout] | ^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 8 - pub struct Where(Vec>); [INFO] [stdout] 8 + pub struct Where(Vec>); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/grammar/operation/like.rs:9:21 [INFO] [stdout] | [INFO] [stdout] 9 | pub struct Like(Box, String); [INFO] [stdout] | ^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 9 - pub struct Like(Box, String); [INFO] [stdout] 9 + pub struct Like(Box, String); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 21 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: anonymous parameters are deprecated and will be removed in the next edition [INFO] [stdout] --> src/grammar/clause/order_by.rs:26:20 [INFO] [stdout] | [INFO] [stdout] 26 | fn order(self, Option) -> Self::Output; [INFO] [stdout] | ^^^^^^^^^^^^^ help: try naming the parameter or explicitly ignoring it: `_: Option` [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(anonymous_parameters)]` on by default [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018! [INFO] [stdout] = note: for more information, see issue #41686 [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stdout] --> src/grammar/clause/order_by.rs:51:25 [INFO] [stdout] | [INFO] [stdout] 51 | buffer.push(try!(expression.compile())); [INFO] [stdout] | ^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(deprecated)]` on by default [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stdout] --> src/grammar/clause/order_by.rs:77:20 [INFO] [stdout] | [INFO] [stdout] 77 | let main = try!(self.0.compile()); [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stdout] --> src/grammar/clause/where.rs:22:25 [INFO] [stdout] | [INFO] [stdout] 22 | buffer.push(try!(condition.compile())); [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lib.rs:108:50 [INFO] [stdout] | [INFO] [stdout] 108 | return Err(::Error($message.to_string())); [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] ::: src/grammar/definition/column.rs:41:37 [INFO] [stdout] | [INFO] [stdout] 41 | buffer.push(format!("`{}`", some!(self.name))); [INFO] [stdout] | ---------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(semicolon_in_expressions_from_macros)]` on by default [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lib.rs:108:50 [INFO] [stdout] | [INFO] [stdout] 108 | return Err(::Error($message.to_string())); [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] ::: src/grammar/definition/column.rs:42:27 [INFO] [stdout] | [INFO] [stdout] 42 | buffer.push(match some!(self.kind) { [INFO] [stdout] | ---------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lib.rs:108:50 [INFO] [stdout] | [INFO] [stdout] 108 | return Err(::Error($message.to_string())); [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] ::: src/grammar/definition/column.rs:57:28 [INFO] [stdout] | [INFO] [stdout] 57 | Ok(format!("`{}`", some!(self.name))) [INFO] [stdout] | ---------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: anonymous parameters are deprecated and will be removed in the next edition [INFO] [stdout] --> src/grammar/operation/like.rs:14:32 [INFO] [stdout] | [INFO] [stdout] 14 | fn like(self, T) -> Like; [INFO] [stdout] | ^ help: try naming the parameter or explicitly ignoring it: `_: T` [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018! [INFO] [stdout] = note: for more information, see issue #41686 [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stdout] --> src/grammar/operation/like.rs:27:36 [INFO] [stdout] | [INFO] [stdout] 27 | Ok(format!("{} LIKE '{}'", try!(self.0.compile()), self.1)) [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lib.rs:108:50 [INFO] [stdout] | [INFO] [stdout] 108 | return Err(::Error($message.to_string())); [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] ::: src/grammar/statement/create_table.rs:54:37 [INFO] [stdout] | [INFO] [stdout] 54 | buffer.push(format!("`{}`", some!(self.name))); [INFO] [stdout] | ---------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lib.rs:108:50 [INFO] [stdout] | [INFO] [stdout] 108 | return Err(::Error($message.to_string())); [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] ::: src/grammar/statement/create_table.rs:57:27 [INFO] [stdout] | [INFO] [stdout] 57 | for column in some!(self.columns) { [INFO] [stdout] | ------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stdout] --> src/grammar/statement/create_table.rs:58:29 [INFO] [stdout] | [INFO] [stdout] 58 | buffer.push(try!(column.compile())); [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lib.rs:108:50 [INFO] [stdout] | [INFO] [stdout] 108 | return Err(::Error($message.to_string())); [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] ::: src/grammar/statement/delete.rs:28:37 [INFO] [stdout] | [INFO] [stdout] 28 | buffer.push(format!("`{}`", some!(self.table))); [INFO] [stdout] | ----------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lib.rs:108:50 [INFO] [stdout] | [INFO] [stdout] 108 | return Err(::Error($message.to_string())); [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] ::: src/grammar/statement/insert.rs:50:37 [INFO] [stdout] | [INFO] [stdout] 50 | buffer.push(format!("`{}`", some!(self.table))); [INFO] [stdout] | ----------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lib.rs:108:50 [INFO] [stdout] | [INFO] [stdout] 108 | return Err(::Error($message.to_string())); [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] ::: src/grammar/statement/insert.rs:54:31 [INFO] [stdout] | [INFO] [stdout] 54 | for column in some!(self.columns) { [INFO] [stdout] | ------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lib.rs:108:50 [INFO] [stdout] | [INFO] [stdout] 108 | return Err(::Error($message.to_string())); [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] ::: src/grammar/statement/select.rs:83:37 [INFO] [stdout] | [INFO] [stdout] 83 | buffer.push(format!("`{}`", some!(self.table))); [INFO] [stdout] | ----------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stdout] --> src/grammar/statement/select.rs:85:25 [INFO] [stdout] | [INFO] [stdout] 85 | buffer.push(try!(clause.compile())); [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stdout] --> src/grammar/statement/select.rs:88:25 [INFO] [stdout] | [INFO] [stdout] 88 | buffer.push(try!(clause.compile())); [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/grammar/clause/order_by.rs:9:28 [INFO] [stdout] | [INFO] [stdout] 9 | pub struct OrderBy(Vec>); [INFO] [stdout] | ^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 9 - pub struct OrderBy(Vec>); [INFO] [stdout] 9 + pub struct OrderBy(Vec>); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/grammar/clause/where.rs:8:26 [INFO] [stdout] | [INFO] [stdout] 8 | pub struct Where(Vec>); [INFO] [stdout] | ^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 8 - pub struct Where(Vec>); [INFO] [stdout] 8 + pub struct Where(Vec>); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/grammar/operation/like.rs:9:21 [INFO] [stdout] | [INFO] [stdout] 9 | pub struct Like(Box, String); [INFO] [stdout] | ^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 9 - pub struct Like(Box, String); [INFO] [stdout] 9 + pub struct Like(Box, String); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 21 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 0.75s [INFO] [stderr] Executable unittests src/lib.rs (/opt/rustwide/target/debug/deps/sql-3f0fe6145a531164) [INFO] running `Command { std: "docker" "inspect" "5717b02bb125a06d96fce0ac438f2909fea59ad4e0ad600bd2140db73cc14528", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "5717b02bb125a06d96fce0ac438f2909fea59ad4e0ad600bd2140db73cc14528", kill_on_drop: false }` [INFO] [stdout] 5717b02bb125a06d96fce0ac438f2909fea59ad4e0ad600bd2140db73cc14528 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-11/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-11/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:b0c94ce3c1162fcb8e57cac5b65ec2f72eabb1eebea4fcc35e269e823f681646" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-04-10" "test" "--frozen", kill_on_drop: false }` [INFO] [stdout] e0b77efc782eae8ba403c0eb130cec2ea510ff6a9a633c3c4238ecbd33f87b8a [INFO] running `Command { std: "docker" "start" "-a" "e0b77efc782eae8ba403c0eb130cec2ea510ff6a9a633c3c4238ecbd33f87b8a", kill_on_drop: false }` [INFO] [stderr] warning: anonymous parameters are deprecated and will be removed in the next edition [INFO] [stderr] --> src/grammar/clause/order_by.rs:26:20 [INFO] [stderr] | [INFO] [stderr] 26 | fn order(self, Option) -> Self::Output; [INFO] [stderr] | ^^^^^^^^^^^^^ help: try naming the parameter or explicitly ignoring it: `_: Option` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(anonymous_parameters)]` on by default [INFO] [stderr] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018! [INFO] [stderr] = note: for more information, see issue #41686 [INFO] [stderr] [INFO] [stderr] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stderr] --> src/grammar/clause/order_by.rs:51:25 [INFO] [stderr] | [INFO] [stderr] 51 | buffer.push(try!(expression.compile())); [INFO] [stderr] | ^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] [INFO] [stderr] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stderr] --> src/grammar/clause/order_by.rs:77:20 [INFO] [stderr] | [INFO] [stderr] 77 | let main = try!(self.0.compile()); [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stderr] --> src/grammar/clause/where.rs:22:25 [INFO] [stderr] | [INFO] [stderr] 22 | buffer.push(try!(condition.compile())); [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/lib.rs:108:50 [INFO] [stderr] | [INFO] [stderr] 108 | return Err(::Error($message.to_string())); [INFO] [stderr] | ^ [INFO] [stderr] | [INFO] [stderr] ::: src/grammar/definition/column.rs:41:37 [INFO] [stderr] | [INFO] [stderr] 41 | buffer.push(format!("`{}`", some!(self.name))); [INFO] [stderr] | ---------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(semicolon_in_expressions_from_macros)]` on by default [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/lib.rs:108:50 [INFO] [stderr] | [INFO] [stderr] 108 | return Err(::Error($message.to_string())); [INFO] [stderr] | ^ [INFO] [stderr] | [INFO] [stderr] ::: src/grammar/definition/column.rs:42:27 [INFO] [stderr] | [INFO] [stderr] 42 | buffer.push(match some!(self.kind) { [INFO] [stderr] | ---------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/lib.rs:108:50 [INFO] [stderr] | [INFO] [stderr] 108 | return Err(::Error($message.to_string())); [INFO] [stderr] | ^ [INFO] [stderr] | [INFO] [stderr] ::: src/grammar/definition/column.rs:57:28 [INFO] [stderr] | [INFO] [stderr] 57 | Ok(format!("`{}`", some!(self.name))) [INFO] [stderr] | ---------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: anonymous parameters are deprecated and will be removed in the next edition [INFO] [stderr] --> src/grammar/operation/like.rs:14:32 [INFO] [stderr] | [INFO] [stderr] 14 | fn like(self, T) -> Like; [INFO] [stderr] | ^ help: try naming the parameter or explicitly ignoring it: `_: T` [INFO] [stderr] | [INFO] [stderr] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018! [INFO] [stderr] = note: for more information, see issue #41686 [INFO] [stderr] [INFO] [stderr] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stderr] --> src/grammar/operation/like.rs:27:36 [INFO] [stderr] | [INFO] [stderr] 27 | Ok(format!("{} LIKE '{}'", try!(self.0.compile()), self.1)) [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/lib.rs:108:50 [INFO] [stderr] | [INFO] [stderr] 108 | return Err(::Error($message.to_string())); [INFO] [stderr] | ^ [INFO] [stderr] | [INFO] [stderr] ::: src/grammar/statement/create_table.rs:54:37 [INFO] [stderr] | [INFO] [stderr] 54 | buffer.push(format!("`{}`", some!(self.name))); [INFO] [stderr] | ---------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/lib.rs:108:50 [INFO] [stderr] | [INFO] [stderr] 108 | return Err(::Error($message.to_string())); [INFO] [stderr] | ^ [INFO] [stderr] | [INFO] [stderr] ::: src/grammar/statement/create_table.rs:57:27 [INFO] [stderr] | [INFO] [stderr] 57 | for column in some!(self.columns) { [INFO] [stderr] | ------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stderr] --> src/grammar/statement/create_table.rs:58:29 [INFO] [stderr] | [INFO] [stderr] 58 | buffer.push(try!(column.compile())); [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/lib.rs:108:50 [INFO] [stderr] | [INFO] [stderr] 108 | return Err(::Error($message.to_string())); [INFO] [stderr] | ^ [INFO] [stderr] | [INFO] [stderr] ::: src/grammar/statement/delete.rs:28:37 [INFO] [stderr] | [INFO] [stderr] 28 | buffer.push(format!("`{}`", some!(self.table))); [INFO] [stderr] | ----------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/lib.rs:108:50 [INFO] [stderr] | [INFO] [stderr] 108 | return Err(::Error($message.to_string())); [INFO] [stderr] | ^ [INFO] [stderr] | [INFO] [stderr] ::: src/grammar/statement/insert.rs:50:37 [INFO] [stderr] | [INFO] [stderr] 50 | buffer.push(format!("`{}`", some!(self.table))); [INFO] [stderr] | ----------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/lib.rs:108:50 [INFO] [stderr] | [INFO] [stderr] 108 | return Err(::Error($message.to_string())); [INFO] [stderr] | ^ [INFO] [stderr] | [INFO] [stderr] ::: src/grammar/statement/insert.rs:54:31 [INFO] [stderr] | [INFO] [stderr] 54 | for column in some!(self.columns) { [INFO] [stderr] | ------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/lib.rs:108:50 [INFO] [stderr] | [INFO] [stderr] 108 | return Err(::Error($message.to_string())); [INFO] [stderr] | ^ [INFO] [stderr] | [INFO] [stderr] ::: src/grammar/statement/select.rs:83:37 [INFO] [stderr] | [INFO] [stderr] 83 | buffer.push(format!("`{}`", some!(self.table))); [INFO] [stderr] | ----------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `raise` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stderr] --> src/grammar/statement/select.rs:85:25 [INFO] [stderr] | [INFO] [stderr] 85 | buffer.push(try!(clause.compile())); [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stderr] --> src/grammar/statement/select.rs:88:25 [INFO] [stderr] | [INFO] [stderr] 88 | buffer.push(try!(clause.compile())); [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/grammar/clause/order_by.rs:9:28 [INFO] [stderr] | [INFO] [stderr] 9 | pub struct OrderBy(Vec>); [INFO] [stderr] | ^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stderr] = note: for more information, see [INFO] [stderr] help: use `dyn` [INFO] [stderr] | [INFO] [stderr] 9 - pub struct OrderBy(Vec>); [INFO] [stderr] 9 + pub struct OrderBy(Vec>); [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/grammar/clause/where.rs:8:26 [INFO] [stderr] | [INFO] [stderr] 8 | pub struct Where(Vec>); [INFO] [stderr] | ^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stderr] = note: for more information, see [INFO] [stderr] help: use `dyn` [INFO] [stderr] | [INFO] [stderr] 8 - pub struct Where(Vec>); [INFO] [stderr] 8 + pub struct Where(Vec>); [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/grammar/operation/like.rs:9:21 [INFO] [stderr] | [INFO] [stderr] 9 | pub struct Like(Box, String); [INFO] [stderr] | ^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stderr] = note: for more information, see [INFO] [stderr] help: use `dyn` [INFO] [stderr] | [INFO] [stderr] 9 - pub struct Like(Box, String); [INFO] [stderr] 9 + pub struct Like(Box, String); [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: `sql` (lib) generated 21 warnings [INFO] [stderr] warning: `sql` (lib test) generated 21 warnings (21 duplicates) [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 0.01s [INFO] [stderr] Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/sql-3f0fe6145a531164) [INFO] [stdout] [INFO] [stdout] running 17 tests [INFO] [stdout] test grammar::clause::order_by::tests::append ... ok [INFO] [stdout] test grammar::clause::order_by::tests::from_column ... ok [INFO] [stdout] test grammar::clause::so_that::tests::and ... ok [INFO] [stdout] test grammar::clause::order_by::tests::from_string ... ok [INFO] [stdout] test grammar::clause::so_that::tests::one ... ok [INFO] [stdout] test grammar::definition::column::tests::not_null ... ok [INFO] [stdout] test grammar::operation::like::tests::from_column ... ok [INFO] [stdout] test grammar::operation::like::tests::from_string ... ok [INFO] [stdout] test grammar::statement::create_table::tests::columns ... ok [INFO] [stdout] test grammar::statement::create_table::tests::if_not_exists ... ok [INFO] [stdout] test grammar::statement::delete::tests::all ... ok [INFO] [stdout] test grammar::statement::select::tests::all ... ok [INFO] [stdout] test grammar::statement::insert::tests::batch ... ok [INFO] [stdout] test grammar::statement::select::tests::columns ... ok [INFO] [stdout] test grammar::statement::select::tests::like ... ok [INFO] [stdout] test grammar::statement::select::tests::limit ... ok [INFO] [stdout] test grammar::statement::select::tests::order ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 17 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s [INFO] [stdout] [INFO] [stderr] Doc-tests sql [INFO] [stdout] [INFO] [stdout] running 1 test [INFO] [stdout] test src/lib.rs - (line 5) ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.39s [INFO] [stdout] [INFO] running `Command { std: "docker" "inspect" "e0b77efc782eae8ba403c0eb130cec2ea510ff6a9a633c3c4238ecbd33f87b8a", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "e0b77efc782eae8ba403c0eb130cec2ea510ff6a9a633c3c4238ecbd33f87b8a", kill_on_drop: false }` [INFO] [stdout] e0b77efc782eae8ba403c0eb130cec2ea510ff6a9a633c3c4238ecbd33f87b8a