[INFO] updating cached repository https://github.com/Yuhta/csvsql
[INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/workspace/cargo-home/bin/git-credential-null" "-c" "remote.origin.fetch=refs/heads/*:refs/heads/*" "fetch" "origin" "--force" "--prune"`
[INFO] running `"git" "rev-parse" "HEAD"`
[INFO] [stdout] b8fc803eb9d86042f17662f42fe07c7fa7d0c4ab
[INFO] checking Yuhta/csvsql against master#209b2be09fcaff937480d1fbbe8b31646e361c7a for pr-70917
[INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2FYuhta%2Fcsvsql" "/workspace/builds/worker-0/source"`
[INFO] [stderr] Cloning into '/workspace/builds/worker-0/source'...
[INFO] [stderr] done.
[INFO] validating manifest of git repo https://github.com/Yuhta/csvsql on toolchain 209b2be09fcaff937480d1fbbe8b31646e361c7a
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "read-manifest" "--manifest-path" "Cargo.toml"`
[INFO] started tweaking git repo https://github.com/Yuhta/csvsql
[INFO] finished tweaking git repo https://github.com/Yuhta/csvsql
[INFO] tweaked toml for git repo https://github.com/Yuhta/csvsql written to /workspace/builds/worker-0/source/Cargo.toml
[INFO] crate git repo https://github.com/Yuhta/csvsql already has a lockfile, it will not be regenerated
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "fetch" "--locked" "--manifest-path" "Cargo.toml"`
[INFO] [stderr] error: the lock file /workspace/builds/worker-0/source/Cargo.lock needs to be updated but --locked was passed to prevent this
[INFO] [stderr] If you want to try to generate the lock file without accessing the network, use the --offline flag.
[INFO] the lockfile is outdated, regenerating it
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"`
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "fetch" "--locked" "--manifest-path" "Cargo.toml"`
[INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-0/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-0/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" "MAP_USER_ID=0" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--network" "none" "rustops/crates-build-env" "/opt/rustwide/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "check" "--frozen" "--all" "--all-targets"`
[INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap.
[INFO] [stdout] 5e934e00af87cc9c97be9441f045208a5e54213db198dc974d50babad2aa8928
[INFO] running `"docker" "start" "-a" "5e934e00af87cc9c97be9441f045208a5e54213db198dc974d50babad2aa8928"`
[INFO] [stderr]    Compiling libsqlite3-sys v0.17.3
[INFO] [stderr]     Checking regex-automata v0.1.9
[INFO] [stderr]     Checking bstr v0.2.12
[INFO] [stderr]     Checking rusqlite v0.22.0
[INFO] [stderr]     Checking csv v1.1.3
[INFO] [stderr]     Checking sqlcsv v0.1.0 (/opt/rustwide/workdir)
[INFO] [stderr] error[E0432]: unresolved import `rusqlite::SqliteConnection`
[INFO] [stderr]  --> src/main.rs:7:5
[INFO] [stderr]   |
[INFO] [stderr] 7 | use rusqlite::SqliteConnection;
[INFO] [stderr]   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^ no `SqliteConnection` in the root
[INFO] [stderr] 
[INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated
[INFO] [stderr]   --> src/main.rs:26:52
[INFO] [stderr]    |
[INFO] [stderr] 26 |         let row: Vec<_> = row.iter().map(|c| c as &ToSql).collect();
[INFO] [stderr]    |                                                    ^^^^^ help: use `dyn`: `dyn ToSql`
[INFO] [stderr]    |
[INFO] [stderr]    = note: `#[warn(bare_trait_objects)]` on by default
[INFO] [stderr] 
[INFO] [stderr] warning: use of deprecated item 'std::slice::<impl [T]>::connect': renamed to join
[INFO] [stderr]   --> src/main.rs:17:59
[INFO] [stderr]    |
[INFO] [stderr] 17 |     let sql = format!("CREATE TABLE {} ({})", table, hdrs.connect(", "));
[INFO] [stderr]    |                                                           ^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr]    = note: `#[warn(deprecated)]` on by default
[INFO] [stderr] 
[INFO] [stderr] warning: use of deprecated item 'std::slice::<impl [T]>::connect': renamed to join
[INFO] [stderr]   --> src/main.rs:22:67
[INFO] [stderr]    |
[INFO] [stderr] 22 |     let sql = format!("INSERT INTO {} VALUES ({})", table, params.connect(", "));
[INFO] [stderr]    |                                                                   ^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error[E0277]: the size for values of type `str` cannot be known at compilation time
[INFO] [stderr]   --> src/main.rs:26:46
[INFO] [stderr]    |
[INFO] [stderr] 26 |         let row: Vec<_> = row.iter().map(|c| c as &ToSql).collect();
[INFO] [stderr]    |                                              ^ doesn't have a size known at compile-time
[INFO] [stderr]    |
[INFO] [stderr]    = help: the trait `std::marker::Sized` is not implemented for `str`
[INFO] [stderr]    = note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
[INFO] [stderr]    = note: required for the cast to the object type `dyn rusqlite::ToSql`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `encode` found for mutable reference `&mut csv::Writer<A>` in the current scope
[INFO] [stderr]   --> src/main.rs:41:12
[INFO] [stderr]    |
[INFO] [stderr] 41 |     writer.encode(hdrs).unwrap();
[INFO] [stderr]    |            ^^^^^^ method not found in `&mut csv::Writer<A>`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `encode` found for mutable reference `&mut csv::Writer<A>` in the current scope
[INFO] [stderr]   --> src/main.rs:47:16
[INFO] [stderr]    |
[INFO] [stderr] 47 |         writer.encode(row).unwrap();
[INFO] [stderr]    |                ^^^^^^ method not found in `&mut csv::Writer<A>`
[INFO] [stderr] 
[INFO] [stderr] error[E0432]: unresolved import `rusqlite::SqliteConnection`
[INFO] [stderr]  --> src/main.rs:7:5
[INFO] [stderr]   |
[INFO] [stderr] 7 | use rusqlite::SqliteConnection;
[INFO] [stderr]   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^ no `SqliteConnection` in the root
[INFO] [stderr] 
[INFO] [stderr] error[E0432]: unresolved import `rusqlite::SqliteConnection`
[INFO] [stderr]   --> src/main.rs:96:9
[INFO] [stderr]    |
[INFO] [stderr] 96 |     use rusqlite::SqliteConnection;
[INFO] [stderr]    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^ no `SqliteConnection` in the root
[INFO] [stderr] 
[INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated
[INFO] [stderr]   --> src/main.rs:26:52
[INFO] [stderr]    |
[INFO] [stderr] 26 |         let row: Vec<_> = row.iter().map(|c| c as &ToSql).collect();
[INFO] [stderr]    |                                                    ^^^^^ help: use `dyn`: `dyn ToSql`
[INFO] [stderr]    |
[INFO] [stderr]    = note: `#[warn(bare_trait_objects)]` on by default
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no function or associated item named `from_file` found for struct `csv::Reader<_>` in the current scope
[INFO] [stderr]   --> src/main.rs:83:36
[INFO] [stderr]    |
[INFO] [stderr] 83 |         let reader = match Reader::from_file(tf[1]) {
[INFO] [stderr]    |                                    ^^^^^^^^^ function or associated item not found in `csv::Reader<_>`
[INFO] [stderr] 
[INFO] [stderr] error: aborting due to 5 previous errors
[INFO] [stderr] 
[INFO] [stderr] Some errors have detailed explanations: E0277, E0432, E0599.
[INFO] [stderr] For more information about an error, try `rustc --explain E0277`.
[INFO] [stderr] error: could not compile `sqlcsv`.
[INFO] [stderr] 
[INFO] [stderr] To learn more, run the command again with --verbose.
[INFO] [stderr] warning: build failed, waiting for other jobs to finish...
[INFO] [stderr] warning: use of deprecated item 'std::slice::<impl [T]>::connect': renamed to join
[INFO] [stderr]   --> src/main.rs:17:59
[INFO] [stderr]    |
[INFO] [stderr] 17 |     let sql = format!("CREATE TABLE {} ({})", table, hdrs.connect(", "));
[INFO] [stderr]    |                                                           ^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr]    = note: `#[warn(deprecated)]` on by default
[INFO] [stderr] 
[INFO] [stderr] warning: use of deprecated item 'std::slice::<impl [T]>::connect': renamed to join
[INFO] [stderr]   --> src/main.rs:22:67
[INFO] [stderr]    |
[INFO] [stderr] 22 |     let sql = format!("INSERT INTO {} VALUES ({})", table, params.connect(", "));
[INFO] [stderr]    |                                                                   ^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error[E0277]: the size for values of type `str` cannot be known at compilation time
[INFO] [stderr]   --> src/main.rs:26:46
[INFO] [stderr]    |
[INFO] [stderr] 26 |         let row: Vec<_> = row.iter().map(|c| c as &ToSql).collect();
[INFO] [stderr]    |                                              ^ doesn't have a size known at compile-time
[INFO] [stderr]    |
[INFO] [stderr]    = help: the trait `std::marker::Sized` is not implemented for `str`
[INFO] [stderr]    = note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
[INFO] [stderr]    = note: required for the cast to the object type `dyn rusqlite::ToSql`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `encode` found for mutable reference `&mut csv::Writer<A>` in the current scope
[INFO] [stderr]   --> src/main.rs:41:12
[INFO] [stderr]    |
[INFO] [stderr] 41 |     writer.encode(hdrs).unwrap();
[INFO] [stderr]    |            ^^^^^^ method not found in `&mut csv::Writer<A>`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `encode` found for mutable reference `&mut csv::Writer<A>` in the current scope
[INFO] [stderr]   --> src/main.rs:47:16
[INFO] [stderr]    |
[INFO] [stderr] 47 |         writer.encode(row).unwrap();
[INFO] [stderr]    |                ^^^^^^ method not found in `&mut csv::Writer<A>`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no function or associated item named `from_file` found for struct `csv::Reader<_>` in the current scope
[INFO] [stderr]   --> src/main.rs:83:36
[INFO] [stderr]    |
[INFO] [stderr] 83 |         let reader = match Reader::from_file(tf[1]) {
[INFO] [stderr]    |                                    ^^^^^^^^^ function or associated item not found in `csv::Reader<_>`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no function or associated item named `from_string` found for struct `csv::Reader<_>` in the current scope
[INFO] [stderr]    --> src/main.rs:101:27
[INFO] [stderr]     |
[INFO] [stderr] 101 |         let rdr = Reader::from_string("A,B\n1,2\n3,4");
[INFO] [stderr]     |                           ^^^^^^^^^^^ function or associated item not found in `csv::Reader<_>`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no function or associated item named `from_memory` found for struct `csv::Writer<_>` in the current scope
[INFO] [stderr]    --> src/main.rs:116:31
[INFO] [stderr]     |
[INFO] [stderr] 116 |         let mut wtr = Writer::from_memory();
[INFO] [stderr]     |                               ^^^^^^^^^^^ function or associated item not found in `csv::Writer<_>`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `as_string` found for struct `csv::Writer<_>` in the current scope
[INFO] [stderr]    --> src/main.rs:118:24
[INFO] [stderr]     |
[INFO] [stderr] 118 |         assert_eq!(wtr.as_string(), "a,b\n1,foo\n2,bar\n");
[INFO] [stderr]     |                        ^^^^^^^^^ method not found in `csv::Writer<_>`
[INFO] [stderr] 
[INFO] [stderr] error: aborting due to 9 previous errors
[INFO] [stderr] 
[INFO] [stderr] Some errors have detailed explanations: E0277, E0432, E0599.
[INFO] [stderr] For more information about an error, try `rustc --explain E0277`.
[INFO] [stderr] error: could not compile `sqlcsv`.
[INFO] [stderr] 
[INFO] [stderr] To learn more, run the command again with --verbose.
[INFO] running `"docker" "inspect" "5e934e00af87cc9c97be9441f045208a5e54213db198dc974d50babad2aa8928"`
[INFO] running `"docker" "rm" "-f" "5e934e00af87cc9c97be9441f045208a5e54213db198dc974d50babad2aa8928"`
[INFO] [stdout] 5e934e00af87cc9c97be9441f045208a5e54213db198dc974d50babad2aa8928
