[INFO] updating cached repository https://github.com/pclewis/bs-rust
[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] d2e4e368960a9eb09f68c8f13c5e7e337a8eb02a
[INFO] checking pclewis/bs-rust against master#bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc for pr-70917
[INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fpclewis%2Fbs-rust" "/workspace/builds/worker-1/source"`
[INFO] [stderr] Cloning into '/workspace/builds/worker-1/source'...
[INFO] [stderr] done.
[INFO] validating manifest of git repo https://github.com/pclewis/bs-rust on toolchain bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc
[INFO] running `"/workspace/cargo-home/bin/cargo" "+bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc" "read-manifest" "--manifest-path" "Cargo.toml"`
[INFO] started tweaking git repo https://github.com/pclewis/bs-rust
[INFO] finished tweaking git repo https://github.com/pclewis/bs-rust
[INFO] tweaked toml for git repo https://github.com/pclewis/bs-rust written to /workspace/builds/worker-1/source/Cargo.toml
[INFO] crate git repo https://github.com/pclewis/bs-rust already has a lockfile, it will not be regenerated
[INFO] running `"/workspace/cargo-home/bin/cargo" "+bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc" "fetch" "--locked" "--manifest-path" "Cargo.toml"`
[INFO] [stderr] error: the lock file /workspace/builds/worker-1/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" "+bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"`
[INFO] [stderr]     Updating git repository `https://github.com/mitsuhiko/redis-rs.git`
[INFO] running `"/workspace/cargo-home/bin/cargo" "+bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc" "fetch" "--locked" "--manifest-path" "Cargo.toml"`
[INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-1/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" "+bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc" "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] 21da64919e158fdd4ab68eaa67ae151ba64424dbab68a740d83a1ba8148ecba3
[INFO] running `"docker" "start" "-a" "21da64919e158fdd4ab68eaa67ae151ba64424dbab68a740d83a1ba8148ecba3"`
[INFO] [stderr]     Checking judy v0.0.2
[INFO] [stderr]     Checking log v0.4.8
[INFO] [stderr]    Compiling async-trait v0.1.30
[INFO] [stderr]     Checking async-task v1.3.1
[INFO] [stderr]     Checking futures-util v0.3.4
[INFO] [stderr]     Checking time v0.2.9
[INFO] [stderr]     Checking mio v0.6.21
[INFO] [stderr]     Checking kv-log-macro v1.0.4
[INFO] [stderr]     Checking env_logger v0.7.1
[INFO] [stderr]     Checking mio-uds v0.6.7
[INFO] [stderr]     Checking tokio v0.2.18
[INFO] [stderr]     Checking async-std v1.5.0
[INFO] [stderr]     Checking combine v4.0.1
[INFO] [stderr]     Checking tokio-util v0.2.0
[INFO] [stderr]     Checking redis v0.15.2-alpha.0 (https://github.com/mitsuhiko/redis-rs.git#1ea0bd0c)
[INFO] [stderr]     Checking bs-rust v0.1.0 (/opt/rustwide/workdir)
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:225:31
[INFO] [stderr]     |
[INFO] [stderr] 225 |             let start = time::precise_time_ns();
[INFO] [stderr]     |                               ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 242 |     let mut tracks_counts : Vec<(&str, usize)> = time!( "fetch", tracks.iter().map( |t| { let c:usize = conn.scard(&t as &str).unwrap(); (t as &str, c) } ).collect() );
[INFO] [stderr]     |                                                  ---------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:227:29
[INFO] [stderr]     |
[INFO] [stderr] 227 |             let end = time::precise_time_ns();
[INFO] [stderr]     |                             ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 242 |     let mut tracks_counts : Vec<(&str, usize)> = time!( "fetch", tracks.iter().map( |t| { let c:usize = conn.scard(&t as &str).unwrap(); (t as &str, c) } ).collect() );
[INFO] [stderr]     |                                                  ---------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:225:31
[INFO] [stderr]     |
[INFO] [stderr] 225 |             let start = time::precise_time_ns();
[INFO] [stderr]     |                               ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 243 |     time!( "sort", tracks_counts.sort_by(|a,b| b.1.cmp(&a.1)) ); // sort descending
[INFO] [stderr]     |     ------------------------------------------------------------ in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:227:29
[INFO] [stderr]     |
[INFO] [stderr] 227 |             let end = time::precise_time_ns();
[INFO] [stderr]     |                             ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 243 |     time!( "sort", tracks_counts.sort_by(|a,b| b.1.cmp(&a.1)) ); // sort descending
[INFO] [stderr]     |     ------------------------------------------------------------ in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:225:31
[INFO] [stderr]     |
[INFO] [stderr] 225 |             let start = time::precise_time_ns();
[INFO] [stderr]     |                               ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 246 |     let tags : Vec<usize> = time!( "union track-tags", conn.sunion(top_n).unwrap() );
[INFO] [stderr]     |                             -------------------------------------------------------- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:227:29
[INFO] [stderr]     |
[INFO] [stderr] 227 |             let end = time::precise_time_ns();
[INFO] [stderr]     |                             ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 246 |     let tags : Vec<usize> = time!( "union track-tags", conn.sunion(top_n).unwrap() );
[INFO] [stderr]     |                             -------------------------------------------------------- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:225:31
[INFO] [stderr]     |
[INFO] [stderr] 225 |             let start = time::precise_time_ns();
[INFO] [stderr]     |                               ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 249 |     let tracks : Vec<usize> = time!( "union tag-tracks", conn.sunion(tag_names).unwrap() );
[INFO] [stderr]     |                               ------------------------------------------------------------ in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:227:29
[INFO] [stderr]     |
[INFO] [stderr] 227 |             let end = time::precise_time_ns();
[INFO] [stderr]     |                             ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 249 |     let tracks : Vec<usize> = time!( "union tag-tracks", conn.sunion(tag_names).unwrap() );
[INFO] [stderr]     |                               ------------------------------------------------------------ in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:225:31
[INFO] [stderr]     |
[INFO] [stderr] 225 |             let start = time::precise_time_ns();
[INFO] [stderr]     |                               ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 252 |     let final_tags : Vec<usize> = time!( "inter track-tags", conn.sinter( track_names ).unwrap() );
[INFO] [stderr]     |                                   ---------------------------------------------------------------- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:227:29
[INFO] [stderr]     |
[INFO] [stderr] 227 |             let end = time::precise_time_ns();
[INFO] [stderr]     |                             ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 252 |     let final_tags : Vec<usize> = time!( "inter track-tags", conn.sinter( track_names ).unwrap() );
[INFO] [stderr]     |                                   ---------------------------------------------------------------- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:225:31
[INFO] [stderr]     |
[INFO] [stderr] 225 |               let start = time::precise_time_ns();
[INFO] [stderr]     |                                 ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 264 | /     time!( "Import track-tags",
[INFO] [stderr] 265 | |         for (i, tags) in all_tracks.track_tags.iter().enumerate() {
[INFO] [stderr] 266 | |             let tags_as_usize : Vec<usize> = tags.iter().map(|i|*i as usize).collect();
[INFO] [stderr] 267 | |             judy.add( "track-tags", i, &tags_as_usize ).unwrap();
[INFO] [stderr] 268 | |         }
[INFO] [stderr] 269 | |     );
[INFO] [stderr]     | |______- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:227:29
[INFO] [stderr]     |
[INFO] [stderr] 227 |               let end = time::precise_time_ns();
[INFO] [stderr]     |                               ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 264 | /     time!( "Import track-tags",
[INFO] [stderr] 265 | |         for (i, tags) in all_tracks.track_tags.iter().enumerate() {
[INFO] [stderr] 266 | |             let tags_as_usize : Vec<usize> = tags.iter().map(|i|*i as usize).collect();
[INFO] [stderr] 267 | |             judy.add( "track-tags", i, &tags_as_usize ).unwrap();
[INFO] [stderr] 268 | |         }
[INFO] [stderr] 269 | |     );
[INFO] [stderr]     | |______- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:225:31
[INFO] [stderr]     |
[INFO] [stderr] 225 |               let start = time::precise_time_ns();
[INFO] [stderr]     |                                 ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 271 | /     time!( "Import tag-tracks",
[INFO] [stderr] 272 | |         for (i, tracks) in all_tracks.tag_tracks.iter().enumerate() {
[INFO] [stderr] 273 | |             let tracks_as_usize : Vec<usize> = tracks.iter().map(|i|*i as usize).collect();
[INFO] [stderr] 274 | |             judy.add( "tag-tracks", i, &tracks_as_usize ).unwrap();
[INFO] [stderr] 275 | |         }
[INFO] [stderr] 276 | |     );
[INFO] [stderr]     | |______- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:227:29
[INFO] [stderr]     |
[INFO] [stderr] 227 |               let end = time::precise_time_ns();
[INFO] [stderr]     |                               ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 271 | /     time!( "Import tag-tracks",
[INFO] [stderr] 272 | |         for (i, tracks) in all_tracks.tag_tracks.iter().enumerate() {
[INFO] [stderr] 273 | |             let tracks_as_usize : Vec<usize> = tracks.iter().map(|i|*i as usize).collect();
[INFO] [stderr] 274 | |             judy.add( "tag-tracks", i, &tracks_as_usize ).unwrap();
[INFO] [stderr] 275 | |         }
[INFO] [stderr] 276 | |     );
[INFO] [stderr]     | |______- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:225:31
[INFO] [stderr]     |
[INFO] [stderr] 225 |             let start = time::precise_time_ns();
[INFO] [stderr]     |                               ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 282 |     time!( "sort", tracks_counts.sort_by(|a,b| b.1.cmp(&a.1)) ); // sort descending
[INFO] [stderr]     |     ------------------------------------------------------------ in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:227:29
[INFO] [stderr]     |
[INFO] [stderr] 227 |             let end = time::precise_time_ns();
[INFO] [stderr]     |                             ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 282 |     time!( "sort", tracks_counts.sort_by(|a,b| b.1.cmp(&a.1)) ); // sort descending
[INFO] [stderr]     |     ------------------------------------------------------------ in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:225:31
[INFO] [stderr]     |
[INFO] [stderr] 225 |             let start = time::precise_time_ns();
[INFO] [stderr]     |                               ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 285 |     let tags : Vec<usize> = time!( "union track-tags", judy.union("track-tags", &top_n).unwrap() );
[INFO] [stderr]     |                             ---------------------------------------------------------------------- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:227:29
[INFO] [stderr]     |
[INFO] [stderr] 227 |             let end = time::precise_time_ns();
[INFO] [stderr]     |                             ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 285 |     let tags : Vec<usize> = time!( "union track-tags", judy.union("track-tags", &top_n).unwrap() );
[INFO] [stderr]     |                             ---------------------------------------------------------------------- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:225:31
[INFO] [stderr]     |
[INFO] [stderr] 225 |             let start = time::precise_time_ns();
[INFO] [stderr]     |                               ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 288 |     let tracks : Vec<usize> = time!( "union tag-tracks", judy.union("tag-tracks", &tags).unwrap() );
[INFO] [stderr]     |                               --------------------------------------------------------------------- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:227:29
[INFO] [stderr]     |
[INFO] [stderr] 227 |             let end = time::precise_time_ns();
[INFO] [stderr]     |                             ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 288 |     let tracks : Vec<usize> = time!( "union tag-tracks", judy.union("tag-tracks", &tags).unwrap() );
[INFO] [stderr]     |                               --------------------------------------------------------------------- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:225:31
[INFO] [stderr]     |
[INFO] [stderr] 225 |             let start = time::precise_time_ns();
[INFO] [stderr]     |                               ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 291 |     let final_tags : Vec<usize> = time!( "inter track-tags", judy.intersect("track-tags", &tracks).unwrap() );
[INFO] [stderr]     |                                   --------------------------------------------------------------------------- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:227:29
[INFO] [stderr]     |
[INFO] [stderr] 227 |             let end = time::precise_time_ns();
[INFO] [stderr]     |                             ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 291 |     let final_tags : Vec<usize> = time!( "inter track-tags", judy.intersect("track-tags", &tracks).unwrap() );
[INFO] [stderr]     |                                   --------------------------------------------------------------------------- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:225:31
[INFO] [stderr]     |
[INFO] [stderr] 225 |               let start = time::precise_time_ns();
[INFO] [stderr]     |                                 ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 328 | /                 time!("Import tracks",
[INFO] [stderr] 329 | |                       walk_dir( Path::new(&arg),
[INFO] [stderr] 330 | |                                 &mut |f| load_track(&conn, &mut bs, f.to_str().unwrap()))
[INFO] [stderr] 331 | |                       ).ok().expect("Error reading path");
[INFO] [stderr]     | |_______________________- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:227:29
[INFO] [stderr]     |
[INFO] [stderr] 227 |               let end = time::precise_time_ns();
[INFO] [stderr]     |                               ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 328 | /                 time!("Import tracks",
[INFO] [stderr] 329 | |                       walk_dir( Path::new(&arg),
[INFO] [stderr] 330 | |                                 &mut |f| load_track(&conn, &mut bs, f.to_str().unwrap()))
[INFO] [stderr] 331 | |                       ).ok().expect("Error reading path");
[INFO] [stderr]     | |_______________________- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead
[INFO] [stderr]    --> src/main.rs:142:18
[INFO] [stderr]     |
[INFO] [stderr] 142 |     let client = try!(redis::Client::open("redis://127.0.0.1/"));
[INFO] [stderr]     |                  ^^^
[INFO] [stderr]     |
[INFO] [stderr]     = note: `#[warn(deprecated)]` on by default
[INFO] [stderr] 
[INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead
[INFO] [stderr]    --> src/main.rs:184:22
[INFO] [stderr]     |
[INFO] [stderr] 184 |         for entry in try!(fs::read_dir(path)) {
[INFO] [stderr]     |                      ^^^
[INFO] [stderr] 
[INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead
[INFO] [stderr]    --> src/main.rs:185:25
[INFO] [stderr]     |
[INFO] [stderr] 185 |             let entry = try!(entry);
[INFO] [stderr]     |                         ^^^
[INFO] [stderr] 
[INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead
[INFO] [stderr]    --> src/main.rs:186:13
[INFO] [stderr]     |
[INFO] [stderr] 186 |             try!(walk_dir(entry.path().as_path(), cb));
[INFO] [stderr]     |             ^^^
[INFO] [stderr] 
[INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated
[INFO] [stderr]    --> src/main.rs:158:46
[INFO] [stderr]     |
[INFO] [stderr] 158 | fn load_track<T>(conn: &Connection, bs: &mut Bitset<T>, filename: &str)
[INFO] [stderr]     |                                              ^^^^^^^^^ help: use `dyn`: `dyn Bitset<T>`
[INFO] [stderr]     |
[INFO] [stderr]     = note: `#[warn(bare_trait_objects)]` on by default
[INFO] [stderr] 
[INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated
[INFO] [stderr]    --> src/main.rs:211:33
[INFO] [stderr]     |
[INFO] [stderr] 211 | fn colorize_ns<T:Write>(t: &mut Terminal<T>, ns: u64)
[INFO] [stderr]     |                                 ^^^^^^^^^^^ help: use `dyn`: `dyn Terminal<T>`
[INFO] [stderr] 
[INFO] [stderr] error[E0107]: wrong number of type arguments: expected 0, found 1
[INFO] [stderr]    --> src/main.rs:211:42
[INFO] [stderr]     |
[INFO] [stderr] 211 | fn colorize_ns<T:Write>(t: &mut Terminal<T>, ns: u64)
[INFO] [stderr]     |                                          ^ unexpected type argument
[INFO] [stderr] 
[INFO] [stderr] error[E0191]: the value of the associated type `Output` (from trait `term::Terminal`) must be specified
[INFO] [stderr]    --> src/main.rs:211:33
[INFO] [stderr]     |
[INFO] [stderr] 211 | fn colorize_ns<T:Write>(t: &mut Terminal<T>, ns: u64)
[INFO] [stderr]     |                                 ^^^^^^^^^-^
[INFO] [stderr]     |                                          |
[INFO] [stderr]     |                                          help: specify the associated type: `Output = T`
[INFO] [stderr] 
[INFO] [stderr] error: aborting due to 26 previous errors
[INFO] [stderr] 
[INFO] [stderr] Some errors have detailed explanations: E0107, E0191, E0425.
[INFO] [stderr] For more information about an error, try `rustc --explain E0107`.
[INFO] [stderr] error: could not compile `bs-rust`.
[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] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:225:31
[INFO] [stderr]     |
[INFO] [stderr] 225 |             let start = time::precise_time_ns();
[INFO] [stderr]     |                               ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 242 |     let mut tracks_counts : Vec<(&str, usize)> = time!( "fetch", tracks.iter().map( |t| { let c:usize = conn.scard(&t as &str).unwrap(); (t as &str, c) } ).collect() );
[INFO] [stderr]     |                                                  ---------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:227:29
[INFO] [stderr]     |
[INFO] [stderr] 227 |             let end = time::precise_time_ns();
[INFO] [stderr]     |                             ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 242 |     let mut tracks_counts : Vec<(&str, usize)> = time!( "fetch", tracks.iter().map( |t| { let c:usize = conn.scard(&t as &str).unwrap(); (t as &str, c) } ).collect() );
[INFO] [stderr]     |                                                  ---------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:225:31
[INFO] [stderr]     |
[INFO] [stderr] 225 |             let start = time::precise_time_ns();
[INFO] [stderr]     |                               ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 243 |     time!( "sort", tracks_counts.sort_by(|a,b| b.1.cmp(&a.1)) ); // sort descending
[INFO] [stderr]     |     ------------------------------------------------------------ in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:227:29
[INFO] [stderr]     |
[INFO] [stderr] 227 |             let end = time::precise_time_ns();
[INFO] [stderr]     |                             ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 243 |     time!( "sort", tracks_counts.sort_by(|a,b| b.1.cmp(&a.1)) ); // sort descending
[INFO] [stderr]     |     ------------------------------------------------------------ in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:225:31
[INFO] [stderr]     |
[INFO] [stderr] 225 |             let start = time::precise_time_ns();
[INFO] [stderr]     |                               ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 246 |     let tags : Vec<usize> = time!( "union track-tags", conn.sunion(top_n).unwrap() );
[INFO] [stderr]     |                             -------------------------------------------------------- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:227:29
[INFO] [stderr]     |
[INFO] [stderr] 227 |             let end = time::precise_time_ns();
[INFO] [stderr]     |                             ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 246 |     let tags : Vec<usize> = time!( "union track-tags", conn.sunion(top_n).unwrap() );
[INFO] [stderr]     |                             -------------------------------------------------------- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:225:31
[INFO] [stderr]     |
[INFO] [stderr] 225 |             let start = time::precise_time_ns();
[INFO] [stderr]     |                               ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 249 |     let tracks : Vec<usize> = time!( "union tag-tracks", conn.sunion(tag_names).unwrap() );
[INFO] [stderr]     |                               ------------------------------------------------------------ in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:227:29
[INFO] [stderr]     |
[INFO] [stderr] 227 |             let end = time::precise_time_ns();
[INFO] [stderr]     |                             ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 249 |     let tracks : Vec<usize> = time!( "union tag-tracks", conn.sunion(tag_names).unwrap() );
[INFO] [stderr]     |                               ------------------------------------------------------------ in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:225:31
[INFO] [stderr]     |
[INFO] [stderr] 225 |             let start = time::precise_time_ns();
[INFO] [stderr]     |                               ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 252 |     let final_tags : Vec<usize> = time!( "inter track-tags", conn.sinter( track_names ).unwrap() );
[INFO] [stderr]     |                                   ---------------------------------------------------------------- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:227:29
[INFO] [stderr]     |
[INFO] [stderr] 227 |             let end = time::precise_time_ns();
[INFO] [stderr]     |                             ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 252 |     let final_tags : Vec<usize> = time!( "inter track-tags", conn.sinter( track_names ).unwrap() );
[INFO] [stderr]     |                                   ---------------------------------------------------------------- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:225:31
[INFO] [stderr]     |
[INFO] [stderr] 225 |               let start = time::precise_time_ns();
[INFO] [stderr]     |                                 ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 264 | /     time!( "Import track-tags",
[INFO] [stderr] 265 | |         for (i, tags) in all_tracks.track_tags.iter().enumerate() {
[INFO] [stderr] 266 | |             let tags_as_usize : Vec<usize> = tags.iter().map(|i|*i as usize).collect();
[INFO] [stderr] 267 | |             judy.add( "track-tags", i, &tags_as_usize ).unwrap();
[INFO] [stderr] 268 | |         }
[INFO] [stderr] 269 | |     );
[INFO] [stderr]     | |______- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:227:29
[INFO] [stderr]     |
[INFO] [stderr] 227 |               let end = time::precise_time_ns();
[INFO] [stderr]     |                               ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 264 | /     time!( "Import track-tags",
[INFO] [stderr] 265 | |         for (i, tags) in all_tracks.track_tags.iter().enumerate() {
[INFO] [stderr] 266 | |             let tags_as_usize : Vec<usize> = tags.iter().map(|i|*i as usize).collect();
[INFO] [stderr] 267 | |             judy.add( "track-tags", i, &tags_as_usize ).unwrap();
[INFO] [stderr] 268 | |         }
[INFO] [stderr] 269 | |     );
[INFO] [stderr]     | |______- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:225:31
[INFO] [stderr]     |
[INFO] [stderr] 225 |               let start = time::precise_time_ns();
[INFO] [stderr]     |                                 ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 271 | /     time!( "Import tag-tracks",
[INFO] [stderr] 272 | |         for (i, tracks) in all_tracks.tag_tracks.iter().enumerate() {
[INFO] [stderr] 273 | |             let tracks_as_usize : Vec<usize> = tracks.iter().map(|i|*i as usize).collect();
[INFO] [stderr] 274 | |             judy.add( "tag-tracks", i, &tracks_as_usize ).unwrap();
[INFO] [stderr] 275 | |         }
[INFO] [stderr] 276 | |     );
[INFO] [stderr]     | |______- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:227:29
[INFO] [stderr]     |
[INFO] [stderr] 227 |               let end = time::precise_time_ns();
[INFO] [stderr]     |                               ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 271 | /     time!( "Import tag-tracks",
[INFO] [stderr] 272 | |         for (i, tracks) in all_tracks.tag_tracks.iter().enumerate() {
[INFO] [stderr] 273 | |             let tracks_as_usize : Vec<usize> = tracks.iter().map(|i|*i as usize).collect();
[INFO] [stderr] 274 | |             judy.add( "tag-tracks", i, &tracks_as_usize ).unwrap();
[INFO] [stderr] 275 | |         }
[INFO] [stderr] 276 | |     );
[INFO] [stderr]     | |______- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:225:31
[INFO] [stderr]     |
[INFO] [stderr] 225 |             let start = time::precise_time_ns();
[INFO] [stderr]     |                               ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 282 |     time!( "sort", tracks_counts.sort_by(|a,b| b.1.cmp(&a.1)) ); // sort descending
[INFO] [stderr]     |     ------------------------------------------------------------ in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:227:29
[INFO] [stderr]     |
[INFO] [stderr] 227 |             let end = time::precise_time_ns();
[INFO] [stderr]     |                             ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 282 |     time!( "sort", tracks_counts.sort_by(|a,b| b.1.cmp(&a.1)) ); // sort descending
[INFO] [stderr]     |     ------------------------------------------------------------ in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:225:31
[INFO] [stderr]     |
[INFO] [stderr] 225 |             let start = time::precise_time_ns();
[INFO] [stderr]     |                               ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 285 |     let tags : Vec<usize> = time!( "union track-tags", judy.union("track-tags", &top_n).unwrap() );
[INFO] [stderr]     |                             ---------------------------------------------------------------------- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:227:29
[INFO] [stderr]     |
[INFO] [stderr] 227 |             let end = time::precise_time_ns();
[INFO] [stderr]     |                             ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 285 |     let tags : Vec<usize> = time!( "union track-tags", judy.union("track-tags", &top_n).unwrap() );
[INFO] [stderr]     |                             ---------------------------------------------------------------------- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:225:31
[INFO] [stderr]     |
[INFO] [stderr] 225 |             let start = time::precise_time_ns();
[INFO] [stderr]     |                               ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 288 |     let tracks : Vec<usize> = time!( "union tag-tracks", judy.union("tag-tracks", &tags).unwrap() );
[INFO] [stderr]     |                               --------------------------------------------------------------------- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:227:29
[INFO] [stderr]     |
[INFO] [stderr] 227 |             let end = time::precise_time_ns();
[INFO] [stderr]     |                             ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 288 |     let tracks : Vec<usize> = time!( "union tag-tracks", judy.union("tag-tracks", &tags).unwrap() );
[INFO] [stderr]     |                               --------------------------------------------------------------------- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:225:31
[INFO] [stderr]     |
[INFO] [stderr] 225 |             let start = time::precise_time_ns();
[INFO] [stderr]     |                               ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 291 |     let final_tags : Vec<usize> = time!( "inter track-tags", judy.intersect("track-tags", &tracks).unwrap() );
[INFO] [stderr]     |                                   --------------------------------------------------------------------------- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:227:29
[INFO] [stderr]     |
[INFO] [stderr] 227 |             let end = time::precise_time_ns();
[INFO] [stderr]     |                             ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 291 |     let final_tags : Vec<usize> = time!( "inter track-tags", judy.intersect("track-tags", &tracks).unwrap() );
[INFO] [stderr]     |                                   --------------------------------------------------------------------------- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:225:31
[INFO] [stderr]     |
[INFO] [stderr] 225 |               let start = time::precise_time_ns();
[INFO] [stderr]     |                                 ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 328 | /                 time!("Import tracks",
[INFO] [stderr] 329 | |                       walk_dir( Path::new(&arg),
[INFO] [stderr] 330 | |                                 &mut |f| load_track(&conn, &mut bs, f.to_str().unwrap()))
[INFO] [stderr] 331 | |                       ).ok().expect("Error reading path");
[INFO] [stderr]     | |_______________________- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `precise_time_ns` in crate `time`
[INFO] [stderr]    --> src/main.rs:227:29
[INFO] [stderr]     |
[INFO] [stderr] 227 |               let end = time::precise_time_ns();
[INFO] [stderr]     |                               ^^^^^^^^^^^^^^^ not found in `time`
[INFO] [stderr] ...
[INFO] [stderr] 328 | /                 time!("Import tracks",
[INFO] [stderr] 329 | |                       walk_dir( Path::new(&arg),
[INFO] [stderr] 330 | |                                 &mut |f| load_track(&conn, &mut bs, f.to_str().unwrap()))
[INFO] [stderr] 331 | |                       ).ok().expect("Error reading path");
[INFO] [stderr]     | |_______________________- in this macro invocation
[INFO] [stderr]     |
[INFO] [stderr]     = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead
[INFO] [stderr]    --> src/main.rs:142:18
[INFO] [stderr]     |
[INFO] [stderr] 142 |     let client = try!(redis::Client::open("redis://127.0.0.1/"));
[INFO] [stderr]     |                  ^^^
[INFO] [stderr]     |
[INFO] [stderr]     = note: `#[warn(deprecated)]` on by default
[INFO] [stderr] 
[INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead
[INFO] [stderr]    --> src/main.rs:184:22
[INFO] [stderr]     |
[INFO] [stderr] 184 |         for entry in try!(fs::read_dir(path)) {
[INFO] [stderr]     |                      ^^^
[INFO] [stderr] 
[INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead
[INFO] [stderr]    --> src/main.rs:185:25
[INFO] [stderr]     |
[INFO] [stderr] 185 |             let entry = try!(entry);
[INFO] [stderr]     |                         ^^^
[INFO] [stderr] 
[INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead
[INFO] [stderr]    --> src/main.rs:186:13
[INFO] [stderr]     |
[INFO] [stderr] 186 |             try!(walk_dir(entry.path().as_path(), cb));
[INFO] [stderr]     |             ^^^
[INFO] [stderr] 
[INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated
[INFO] [stderr]    --> src/main.rs:158:46
[INFO] [stderr]     |
[INFO] [stderr] 158 | fn load_track<T>(conn: &Connection, bs: &mut Bitset<T>, filename: &str)
[INFO] [stderr]     |                                              ^^^^^^^^^ help: use `dyn`: `dyn Bitset<T>`
[INFO] [stderr]     |
[INFO] [stderr]     = note: `#[warn(bare_trait_objects)]` on by default
[INFO] [stderr] 
[INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated
[INFO] [stderr]    --> src/main.rs:211:33
[INFO] [stderr]     |
[INFO] [stderr] 211 | fn colorize_ns<T:Write>(t: &mut Terminal<T>, ns: u64)
[INFO] [stderr]     |                                 ^^^^^^^^^^^ help: use `dyn`: `dyn Terminal<T>`
[INFO] [stderr] 
[INFO] [stderr] error[E0107]: wrong number of type arguments: expected 0, found 1
[INFO] [stderr]    --> src/main.rs:211:42
[INFO] [stderr]     |
[INFO] [stderr] 211 | fn colorize_ns<T:Write>(t: &mut Terminal<T>, ns: u64)
[INFO] [stderr]     |                                          ^ unexpected type argument
[INFO] [stderr] 
[INFO] [stderr] error[E0191]: the value of the associated type `Output` (from trait `term::Terminal`) must be specified
[INFO] [stderr]    --> src/main.rs:211:33
[INFO] [stderr]     |
[INFO] [stderr] 211 | fn colorize_ns<T:Write>(t: &mut Terminal<T>, ns: u64)
[INFO] [stderr]     |                                 ^^^^^^^^^-^
[INFO] [stderr]     |                                          |
[INFO] [stderr]     |                                          help: specify the associated type: `Output = T`
[INFO] [stderr] 
[INFO] [stderr] error: aborting due to 26 previous errors
[INFO] [stderr] 
[INFO] [stderr] Some errors have detailed explanations: E0107, E0191, E0425.
[INFO] [stderr] For more information about an error, try `rustc --explain E0107`.
[INFO] [stderr] error: could not compile `bs-rust`.
[INFO] [stderr] 
[INFO] [stderr] To learn more, run the command again with --verbose.
[INFO] running `"docker" "inspect" "21da64919e158fdd4ab68eaa67ae151ba64424dbab68a740d83a1ba8148ecba3"`
[INFO] running `"docker" "rm" "-f" "21da64919e158fdd4ab68eaa67ae151ba64424dbab68a740d83a1ba8148ecba3"`
[INFO] [stdout] 21da64919e158fdd4ab68eaa67ae151ba64424dbab68a740d83a1ba8148ecba3
