[INFO] cloning repository https://github.com/sc2hool8win/rust-book1-learn
[INFO] running `Command { std: "git" "-c" "credential.helper=" "-c" "credential.helper=/workspace/cargo-home/bin/git-credential-null" "clone" "--bare" "https://github.com/sc2hool8win/rust-book1-learn" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fsc2hool8win%2Frust-book1-learn", kill_on_drop: false }`
[INFO] [stderr] Cloning into bare repository '/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fsc2hool8win%2Frust-book1-learn'...
[INFO] running `Command { std: "git" "rev-parse" "HEAD", kill_on_drop: false }`
[INFO] [stdout] 133930b983972b32d08b9740aacc0cf24f80af53
[INFO] checking sc2hool8win/rust-book1-learn against a621e2b446eafb53c7a8569f225e0b8cc2429a68 for pr-162600
[INFO] running `Command { std: "git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fsc2hool8win%2Frust-book1-learn" "/workspace/builds/worker-5-tc2/source", kill_on_drop: false }`
[INFO] [stderr] Cloning into '/workspace/builds/worker-5-tc2/source'...
[INFO] [stderr] done.
[INFO] removed /workspace/builds/worker-5-tc2/source/rust-toolchain.toml
[INFO] started tweaking git repo https://github.com/sc2hool8win/rust-book1-learn
[INFO] finished tweaking git repo https://github.com/sc2hool8win/rust-book1-learn
[INFO] tweaked toml for git repo https://github.com/sc2hool8win/rust-book1-learn written to /workspace/builds/worker-5-tc2/source/Cargo.toml
[INFO] validating manifest of git repo https://github.com/sc2hool8win/rust-book1-learn on toolchain a621e2b446eafb53c7a8569f225e0b8cc2429a68
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+a621e2b446eafb53c7a8569f225e0b8cc2429a68" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] crate git repo https://github.com/sc2hool8win/rust-book1-learn already has a lockfile, it will not be regenerated
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+a621e2b446eafb53c7a8569f225e0b8cc2429a68" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] [stderr] warning: binary `another_bin` should have a kebab-case name
[INFO] [stderr]    |
[INFO] [stderr]  1 | /workspace/builds/worker-5-tc2/source/target/.../another_bin
[INFO] [stderr]    |                                                  ^^^^^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr]    = note: `cargo::non_kebab_case_bins` is set to `warn` by default
[INFO] [stderr] help: to change the binary name to `another-bin`, convert `package.name`
[INFO] [stderr]   --> chapter7/another_bin/Cargo.toml:2:8
[INFO] [stderr]    |
[INFO] [stderr]  2 - name = "another_bin"
[INFO] [stderr]  2 + name = "another-bin"
[INFO] [stderr]    |
[INFO] [stderr] help: to change the binary name to `another-bin`, specify `bin.name`
[INFO] [stderr]   --> chapter7/another_bin/Cargo.toml:7:60
[INFO] [stderr]    |
[INFO] [stderr]  7 ~ my_library = { version = "0.1.0", path = "../my_library" }
[INFO] [stderr]  8 + [[bin]]
[INFO] [stderr]  9 + name = "another-bin"
[INFO] [stderr] 10 + path = "src/main.rs"
[INFO] [stderr]    |
[INFO] [stderr] warning: `another_bin` (manifest) generated 1 warning
[INFO] [stderr] warning: binary `hello_world` should have a kebab-case name
[INFO] [stderr]   |
[INFO] [stderr] 1 | /workspace/builds/worker-5-tc2/source/target/.../hello_world
[INFO] [stderr]   |                                                  ^^^^^^^^^^^
[INFO] [stderr]   |
[INFO] [stderr]   = note: `cargo::non_kebab_case_bins` is set to `warn` by default
[INFO] [stderr] help: to change the binary name to `hello-world`, convert `package.name`
[INFO] [stderr]  --> chapter2/hello_world/Cargo.toml:2:8
[INFO] [stderr]   |
[INFO] [stderr] 2 - name = "hello_world"
[INFO] [stderr] 2 + name = "hello-world"
[INFO] [stderr]   |
[INFO] [stderr] help: to change the binary name to `hello-world`, specify `bin.name`
[INFO] [stderr]  --> chapter2/hello_world/Cargo.toml:6:16
[INFO] [stderr]   |
[INFO] [stderr] 6 ~ [dependencies]
[INFO] [stderr] 7 + [[bin]]
[INFO] [stderr] 8 + name = "hello-world"
[INFO] [stderr] 9 + path = "src/main.rs"
[INFO] [stderr]   |
[INFO] [stderr] warning: `hello_world` (manifest) generated 1 warning
[INFO] [stderr] warning: binary `use_remote_crate` should have a kebab-case name
[INFO] [stderr]    |
[INFO] [stderr]  1 | /workspace/builds/worker-5-tc2/source/target/.../use_remote_crate
[INFO] [stderr]    |                                                  ^^^^^^^^^^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr]    = note: `cargo::non_kebab_case_bins` is set to `warn` by default
[INFO] [stderr] help: to change the binary name to `use-remote-crate`, convert `package.name`
[INFO] [stderr]   --> chapter7/use_remote_crate/Cargo.toml:2:8
[INFO] [stderr]    |
[INFO] [stderr]  2 - name = "use_remote_crate"
[INFO] [stderr]  2 + name = "use-remote-crate"
[INFO] [stderr]    |
[INFO] [stderr] help: to change the binary name to `use-remote-crate`, specify `bin.name`
[INFO] [stderr]   --> chapter7/use_remote_crate/Cargo.toml:7:101
[INFO] [stderr]    |
[INFO] [stderr]  7 ~ my_library = {git="https://github.com/estie-inc/rust-book", package = "my_library", branch = "main"}
[INFO] [stderr]  8 + [[bin]]
[INFO] [stderr]  9 + name = "use-remote-crate"
[INFO] [stderr] 10 + path = "src/main.rs"
[INFO] [stderr]    |
[INFO] [stderr] warning: `use_remote_crate` (manifest) generated 1 warning
[INFO] [stderr]     Blocking waiting for file lock on package cache
[INFO] [stderr]     Updating git repository `https://github.com/estie-inc/rust-book`
[INFO] [stderr]     Updating crates.io index
[INFO] [stderr]     Blocking waiting for file lock on package cache
[ERROR] error running command: no output for 300 seconds
[INFO] checking sc2hool8win/rust-book1-learn against a621e2b446eafb53c7a8569f225e0b8cc2429a68 for pr-162600
[INFO] running `Command { std: "git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fsc2hool8win%2Frust-book1-learn" "/workspace/builds/worker-5-tc2/source", kill_on_drop: false }`
[INFO] [stderr] Cloning into '/workspace/builds/worker-5-tc2/source'...
[INFO] [stderr] done.
[INFO] removed /workspace/builds/worker-5-tc2/source/rust-toolchain.toml
[INFO] started tweaking git repo https://github.com/sc2hool8win/rust-book1-learn
[INFO] finished tweaking git repo https://github.com/sc2hool8win/rust-book1-learn
[INFO] tweaked toml for git repo https://github.com/sc2hool8win/rust-book1-learn written to /workspace/builds/worker-5-tc2/source/Cargo.toml
[INFO] validating manifest of git repo https://github.com/sc2hool8win/rust-book1-learn on toolchain a621e2b446eafb53c7a8569f225e0b8cc2429a68
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+a621e2b446eafb53c7a8569f225e0b8cc2429a68" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] crate git repo https://github.com/sc2hool8win/rust-book1-learn already has a lockfile, it will not be regenerated
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+a621e2b446eafb53c7a8569f225e0b8cc2429a68" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] [stderr] warning: binary `another_bin` should have a kebab-case name
[INFO] [stderr]    |
[INFO] [stderr]  1 | /workspace/builds/worker-5-tc2/source/target/.../another_bin
[INFO] [stderr]    |                                                  ^^^^^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr]    = note: `cargo::non_kebab_case_bins` is set to `warn` by default
[INFO] [stderr] help: to change the binary name to `another-bin`, convert `package.name`
[INFO] [stderr]   --> chapter7/another_bin/Cargo.toml:2:8
[INFO] [stderr]    |
[INFO] [stderr]  2 - name = "another_bin"
[INFO] [stderr]  2 + name = "another-bin"
[INFO] [stderr]    |
[INFO] [stderr] help: to change the binary name to `another-bin`, specify `bin.name`
[INFO] [stderr]   --> chapter7/another_bin/Cargo.toml:7:60
[INFO] [stderr]    |
[INFO] [stderr]  7 ~ my_library = { version = "0.1.0", path = "../my_library" }
[INFO] [stderr]  8 + [[bin]]
[INFO] [stderr]  9 + name = "another-bin"
[INFO] [stderr] 10 + path = "src/main.rs"
[INFO] [stderr]    |
[INFO] [stderr] warning: `another_bin` (manifest) generated 1 warning
[INFO] [stderr] warning: binary `hello_world` should have a kebab-case name
[INFO] [stderr]   |
[INFO] [stderr] 1 | /workspace/builds/worker-5-tc2/source/target/.../hello_world
[INFO] [stderr]   |                                                  ^^^^^^^^^^^
[INFO] [stderr]   |
[INFO] [stderr]   = note: `cargo::non_kebab_case_bins` is set to `warn` by default
[INFO] [stderr] help: to change the binary name to `hello-world`, convert `package.name`
[INFO] [stderr]  --> chapter2/hello_world/Cargo.toml:2:8
[INFO] [stderr]   |
[INFO] [stderr] 2 - name = "hello_world"
[INFO] [stderr] 2 + name = "hello-world"
[INFO] [stderr]   |
[INFO] [stderr] help: to change the binary name to `hello-world`, specify `bin.name`
[INFO] [stderr]  --> chapter2/hello_world/Cargo.toml:6:16
[INFO] [stderr]   |
[INFO] [stderr] 6 ~ [dependencies]
[INFO] [stderr] 7 + [[bin]]
[INFO] [stderr] 8 + name = "hello-world"
[INFO] [stderr] 9 + path = "src/main.rs"
[INFO] [stderr]   |
[INFO] [stderr] warning: `hello_world` (manifest) generated 1 warning
[INFO] [stderr] warning: binary `use_remote_crate` should have a kebab-case name
[INFO] [stderr]    |
[INFO] [stderr]  1 | /workspace/builds/worker-5-tc2/source/target/.../use_remote_crate
[INFO] [stderr]    |                                                  ^^^^^^^^^^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr]    = note: `cargo::non_kebab_case_bins` is set to `warn` by default
[INFO] [stderr] help: to change the binary name to `use-remote-crate`, convert `package.name`
[INFO] [stderr]   --> chapter7/use_remote_crate/Cargo.toml:2:8
[INFO] [stderr]    |
[INFO] [stderr]  2 - name = "use_remote_crate"
[INFO] [stderr]  2 + name = "use-remote-crate"
[INFO] [stderr]    |
[INFO] [stderr] help: to change the binary name to `use-remote-crate`, specify `bin.name`
[INFO] [stderr]   --> chapter7/use_remote_crate/Cargo.toml:7:101
[INFO] [stderr]    |
[INFO] [stderr]  7 ~ my_library = {git="https://github.com/estie-inc/rust-book", package = "my_library", branch = "main"}
[INFO] [stderr]  8 + [[bin]]
[INFO] [stderr]  9 + name = "use-remote-crate"
[INFO] [stderr] 10 + path = "src/main.rs"
[INFO] [stderr]    |
[INFO] [stderr] warning: `use_remote_crate` (manifest) generated 1 warning
[INFO] [stderr]     Blocking waiting for file lock on package cache
[INFO] [stderr]     Blocking waiting for file lock on package cache
[ERROR] error running command: no output for 300 seconds
[INFO] checking sc2hool8win/rust-book1-learn against a621e2b446eafb53c7a8569f225e0b8cc2429a68 for pr-162600
[INFO] running `Command { std: "git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fsc2hool8win%2Frust-book1-learn" "/workspace/builds/worker-5-tc2/source", kill_on_drop: false }`
[INFO] [stderr] Cloning into '/workspace/builds/worker-5-tc2/source'...
[INFO] [stderr] done.
[INFO] removed /workspace/builds/worker-5-tc2/source/rust-toolchain.toml
[INFO] started tweaking git repo https://github.com/sc2hool8win/rust-book1-learn
[INFO] finished tweaking git repo https://github.com/sc2hool8win/rust-book1-learn
[INFO] tweaked toml for git repo https://github.com/sc2hool8win/rust-book1-learn written to /workspace/builds/worker-5-tc2/source/Cargo.toml
[INFO] validating manifest of git repo https://github.com/sc2hool8win/rust-book1-learn on toolchain a621e2b446eafb53c7a8569f225e0b8cc2429a68
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+a621e2b446eafb53c7a8569f225e0b8cc2429a68" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] crate git repo https://github.com/sc2hool8win/rust-book1-learn already has a lockfile, it will not be regenerated
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+a621e2b446eafb53c7a8569f225e0b8cc2429a68" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] [stderr] warning: binary `another_bin` should have a kebab-case name
[INFO] [stderr]    |
[INFO] [stderr]  1 | /workspace/builds/worker-5-tc2/source/target/.../another_bin
[INFO] [stderr]    |                                                  ^^^^^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr]    = note: `cargo::non_kebab_case_bins` is set to `warn` by default
[INFO] [stderr] help: to change the binary name to `another-bin`, convert `package.name`
[INFO] [stderr]   --> chapter7/another_bin/Cargo.toml:2:8
[INFO] [stderr]    |
[INFO] [stderr]  2 - name = "another_bin"
[INFO] [stderr]  2 + name = "another-bin"
[INFO] [stderr]    |
[INFO] [stderr] help: to change the binary name to `another-bin`, specify `bin.name`
[INFO] [stderr]   --> chapter7/another_bin/Cargo.toml:7:60
[INFO] [stderr]    |
[INFO] [stderr]  7 ~ my_library = { version = "0.1.0", path = "../my_library" }
[INFO] [stderr]  8 + [[bin]]
[INFO] [stderr]  9 + name = "another-bin"
[INFO] [stderr] 10 + path = "src/main.rs"
[INFO] [stderr]    |
[INFO] [stderr] warning: `another_bin` (manifest) generated 1 warning
[INFO] [stderr] warning: binary `hello_world` should have a kebab-case name
[INFO] [stderr]   |
[INFO] [stderr] 1 | /workspace/builds/worker-5-tc2/source/target/.../hello_world
[INFO] [stderr]   |                                                  ^^^^^^^^^^^
[INFO] [stderr]   |
[INFO] [stderr]   = note: `cargo::non_kebab_case_bins` is set to `warn` by default
[INFO] [stderr] help: to change the binary name to `hello-world`, convert `package.name`
[INFO] [stderr]  --> chapter2/hello_world/Cargo.toml:2:8
[INFO] [stderr]   |
[INFO] [stderr] 2 - name = "hello_world"
[INFO] [stderr] 2 + name = "hello-world"
[INFO] [stderr]   |
[INFO] [stderr] help: to change the binary name to `hello-world`, specify `bin.name`
[INFO] [stderr]  --> chapter2/hello_world/Cargo.toml:6:16
[INFO] [stderr]   |
[INFO] [stderr] 6 ~ [dependencies]
[INFO] [stderr] 7 + [[bin]]
[INFO] [stderr] 8 + name = "hello-world"
[INFO] [stderr] 9 + path = "src/main.rs"
[INFO] [stderr]   |
[INFO] [stderr] warning: `hello_world` (manifest) generated 1 warning
[INFO] [stderr] warning: binary `use_remote_crate` should have a kebab-case name
[INFO] [stderr]    |
[INFO] [stderr]  1 | /workspace/builds/worker-5-tc2/source/target/.../use_remote_crate
[INFO] [stderr]    |                                                  ^^^^^^^^^^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr]    = note: `cargo::non_kebab_case_bins` is set to `warn` by default
[INFO] [stderr] help: to change the binary name to `use-remote-crate`, convert `package.name`
[INFO] [stderr]   --> chapter7/use_remote_crate/Cargo.toml:2:8
[INFO] [stderr]    |
[INFO] [stderr]  2 - name = "use_remote_crate"
[INFO] [stderr]  2 + name = "use-remote-crate"
[INFO] [stderr]    |
[INFO] [stderr] help: to change the binary name to `use-remote-crate`, specify `bin.name`
[INFO] [stderr]   --> chapter7/use_remote_crate/Cargo.toml:7:101
[INFO] [stderr]    |
[INFO] [stderr]  7 ~ my_library = {git="https://github.com/estie-inc/rust-book", package = "my_library", branch = "main"}
[INFO] [stderr]  8 + [[bin]]
[INFO] [stderr]  9 + name = "use-remote-crate"
[INFO] [stderr] 10 + path = "src/main.rs"
[INFO] [stderr]    |
[INFO] [stderr] warning: `use_remote_crate` (manifest) generated 1 warning
[INFO] [stderr]     Blocking waiting for file lock on package cache
[INFO] [stderr]     Blocking waiting for file lock on package cache
[ERROR] error running command: no output for 300 seconds
[INFO] checking sc2hool8win/rust-book1-learn against a621e2b446eafb53c7a8569f225e0b8cc2429a68 for pr-162600
[INFO] running `Command { std: "git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fsc2hool8win%2Frust-book1-learn" "/workspace/builds/worker-5-tc2/source", kill_on_drop: false }`
[INFO] [stderr] Cloning into '/workspace/builds/worker-5-tc2/source'...
[INFO] [stderr] done.
[INFO] removed /workspace/builds/worker-5-tc2/source/rust-toolchain.toml
[INFO] started tweaking git repo https://github.com/sc2hool8win/rust-book1-learn
[INFO] finished tweaking git repo https://github.com/sc2hool8win/rust-book1-learn
[INFO] tweaked toml for git repo https://github.com/sc2hool8win/rust-book1-learn written to /workspace/builds/worker-5-tc2/source/Cargo.toml
[INFO] validating manifest of git repo https://github.com/sc2hool8win/rust-book1-learn on toolchain a621e2b446eafb53c7a8569f225e0b8cc2429a68
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+a621e2b446eafb53c7a8569f225e0b8cc2429a68" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] crate git repo https://github.com/sc2hool8win/rust-book1-learn already has a lockfile, it will not be regenerated
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+a621e2b446eafb53c7a8569f225e0b8cc2429a68" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] [stderr] warning: binary `another_bin` should have a kebab-case name
[INFO] [stderr]    |
[INFO] [stderr]  1 | /workspace/builds/worker-5-tc2/source/target/.../another_bin
[INFO] [stderr]    |                                                  ^^^^^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr]    = note: `cargo::non_kebab_case_bins` is set to `warn` by default
[INFO] [stderr] help: to change the binary name to `another-bin`, convert `package.name`
[INFO] [stderr]   --> chapter7/another_bin/Cargo.toml:2:8
[INFO] [stderr]    |
[INFO] [stderr]  2 - name = "another_bin"
[INFO] [stderr]  2 + name = "another-bin"
[INFO] [stderr]    |
[INFO] [stderr] help: to change the binary name to `another-bin`, specify `bin.name`
[INFO] [stderr]   --> chapter7/another_bin/Cargo.toml:7:60
[INFO] [stderr]    |
[INFO] [stderr]  7 ~ my_library = { version = "0.1.0", path = "../my_library" }
[INFO] [stderr]  8 + [[bin]]
[INFO] [stderr]  9 + name = "another-bin"
[INFO] [stderr] 10 + path = "src/main.rs"
[INFO] [stderr]    |
[INFO] [stderr] warning: `another_bin` (manifest) generated 1 warning
[INFO] [stderr] warning: binary `hello_world` should have a kebab-case name
[INFO] [stderr]   |
[INFO] [stderr] 1 | /workspace/builds/worker-5-tc2/source/target/.../hello_world
[INFO] [stderr]   |                                                  ^^^^^^^^^^^
[INFO] [stderr]   |
[INFO] [stderr]   = note: `cargo::non_kebab_case_bins` is set to `warn` by default
[INFO] [stderr] help: to change the binary name to `hello-world`, convert `package.name`
[INFO] [stderr]  --> chapter2/hello_world/Cargo.toml:2:8
[INFO] [stderr]   |
[INFO] [stderr] 2 - name = "hello_world"
[INFO] [stderr] 2 + name = "hello-world"
[INFO] [stderr]   |
[INFO] [stderr] help: to change the binary name to `hello-world`, specify `bin.name`
[INFO] [stderr]  --> chapter2/hello_world/Cargo.toml:6:16
[INFO] [stderr]   |
[INFO] [stderr] 6 ~ [dependencies]
[INFO] [stderr] 7 + [[bin]]
[INFO] [stderr] 8 + name = "hello-world"
[INFO] [stderr] 9 + path = "src/main.rs"
[INFO] [stderr]   |
[INFO] [stderr] warning: `hello_world` (manifest) generated 1 warning
[INFO] [stderr] warning: binary `use_remote_crate` should have a kebab-case name
[INFO] [stderr]    |
[INFO] [stderr]  1 | /workspace/builds/worker-5-tc2/source/target/.../use_remote_crate
[INFO] [stderr]    |                                                  ^^^^^^^^^^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr]    = note: `cargo::non_kebab_case_bins` is set to `warn` by default
[INFO] [stderr] help: to change the binary name to `use-remote-crate`, convert `package.name`
[INFO] [stderr]   --> chapter7/use_remote_crate/Cargo.toml:2:8
[INFO] [stderr]    |
[INFO] [stderr]  2 - name = "use_remote_crate"
[INFO] [stderr]  2 + name = "use-remote-crate"
[INFO] [stderr]    |
[INFO] [stderr] help: to change the binary name to `use-remote-crate`, specify `bin.name`
[INFO] [stderr]   --> chapter7/use_remote_crate/Cargo.toml:7:101
[INFO] [stderr]    |
[INFO] [stderr]  7 ~ my_library = {git="https://github.com/estie-inc/rust-book", package = "my_library", branch = "main"}
[INFO] [stderr]  8 + [[bin]]
[INFO] [stderr]  9 + name = "use-remote-crate"
[INFO] [stderr] 10 + path = "src/main.rs"
[INFO] [stderr]    |
[INFO] [stderr] warning: `use_remote_crate` (manifest) generated 1 warning
[INFO] [stderr]     Blocking waiting for file lock on package cache
[INFO] [stderr]     Blocking waiting for file lock on package cache
[ERROR] error running command: no output for 300 seconds
[INFO] checking sc2hool8win/rust-book1-learn against a621e2b446eafb53c7a8569f225e0b8cc2429a68 for pr-162600
[INFO] running `Command { std: "git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fsc2hool8win%2Frust-book1-learn" "/workspace/builds/worker-5-tc2/source", kill_on_drop: false }`
[INFO] [stderr] Cloning into '/workspace/builds/worker-5-tc2/source'...
[INFO] [stderr] done.
[INFO] removed /workspace/builds/worker-5-tc2/source/rust-toolchain.toml
[INFO] started tweaking git repo https://github.com/sc2hool8win/rust-book1-learn
[INFO] finished tweaking git repo https://github.com/sc2hool8win/rust-book1-learn
[INFO] tweaked toml for git repo https://github.com/sc2hool8win/rust-book1-learn written to /workspace/builds/worker-5-tc2/source/Cargo.toml
[INFO] validating manifest of git repo https://github.com/sc2hool8win/rust-book1-learn on toolchain a621e2b446eafb53c7a8569f225e0b8cc2429a68
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+a621e2b446eafb53c7a8569f225e0b8cc2429a68" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] crate git repo https://github.com/sc2hool8win/rust-book1-learn already has a lockfile, it will not be regenerated
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+a621e2b446eafb53c7a8569f225e0b8cc2429a68" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] [stderr] warning: binary `another_bin` should have a kebab-case name
[INFO] [stderr]    |
[INFO] [stderr]  1 | /workspace/builds/worker-5-tc2/source/target/.../another_bin
[INFO] [stderr]    |                                                  ^^^^^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr]    = note: `cargo::non_kebab_case_bins` is set to `warn` by default
[INFO] [stderr] help: to change the binary name to `another-bin`, convert `package.name`
[INFO] [stderr]   --> chapter7/another_bin/Cargo.toml:2:8
[INFO] [stderr]    |
[INFO] [stderr]  2 - name = "another_bin"
[INFO] [stderr]  2 + name = "another-bin"
[INFO] [stderr]    |
[INFO] [stderr] help: to change the binary name to `another-bin`, specify `bin.name`
[INFO] [stderr]   --> chapter7/another_bin/Cargo.toml:7:60
[INFO] [stderr]    |
[INFO] [stderr]  7 ~ my_library = { version = "0.1.0", path = "../my_library" }
[INFO] [stderr]  8 + [[bin]]
[INFO] [stderr]  9 + name = "another-bin"
[INFO] [stderr] 10 + path = "src/main.rs"
[INFO] [stderr]    |
[INFO] [stderr] warning: `another_bin` (manifest) generated 1 warning
[INFO] [stderr] warning: binary `hello_world` should have a kebab-case name
[INFO] [stderr]   |
[INFO] [stderr] 1 | /workspace/builds/worker-5-tc2/source/target/.../hello_world
[INFO] [stderr]   |                                                  ^^^^^^^^^^^
[INFO] [stderr]   |
[INFO] [stderr]   = note: `cargo::non_kebab_case_bins` is set to `warn` by default
[INFO] [stderr] help: to change the binary name to `hello-world`, convert `package.name`
[INFO] [stderr]  --> chapter2/hello_world/Cargo.toml:2:8
[INFO] [stderr]   |
[INFO] [stderr] 2 - name = "hello_world"
[INFO] [stderr] 2 + name = "hello-world"
[INFO] [stderr]   |
[INFO] [stderr] help: to change the binary name to `hello-world`, specify `bin.name`
[INFO] [stderr]  --> chapter2/hello_world/Cargo.toml:6:16
[INFO] [stderr]   |
[INFO] [stderr] 6 ~ [dependencies]
[INFO] [stderr] 7 + [[bin]]
[INFO] [stderr] 8 + name = "hello-world"
[INFO] [stderr] 9 + path = "src/main.rs"
[INFO] [stderr]   |
[INFO] [stderr] warning: `hello_world` (manifest) generated 1 warning
[INFO] [stderr] warning: binary `use_remote_crate` should have a kebab-case name
[INFO] [stderr]    |
[INFO] [stderr]  1 | /workspace/builds/worker-5-tc2/source/target/.../use_remote_crate
[INFO] [stderr]    |                                                  ^^^^^^^^^^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr]    = note: `cargo::non_kebab_case_bins` is set to `warn` by default
[INFO] [stderr] help: to change the binary name to `use-remote-crate`, convert `package.name`
[INFO] [stderr]   --> chapter7/use_remote_crate/Cargo.toml:2:8
[INFO] [stderr]    |
[INFO] [stderr]  2 - name = "use_remote_crate"
[INFO] [stderr]  2 + name = "use-remote-crate"
[INFO] [stderr]    |
[INFO] [stderr] help: to change the binary name to `use-remote-crate`, specify `bin.name`
[INFO] [stderr]   --> chapter7/use_remote_crate/Cargo.toml:7:101
[INFO] [stderr]    |
[INFO] [stderr]  7 ~ my_library = {git="https://github.com/estie-inc/rust-book", package = "my_library", branch = "main"}
[INFO] [stderr]  8 + [[bin]]
[INFO] [stderr]  9 + name = "use-remote-crate"
[INFO] [stderr] 10 + path = "src/main.rs"
[INFO] [stderr]    |
[INFO] [stderr] warning: `use_remote_crate` (manifest) generated 1 warning
[INFO] [stderr]     Blocking waiting for file lock on package cache
[INFO] [stderr]     Blocking waiting for file lock on package cache
[INFO] [stderr]  Downloading crates ...
[INFO] [stderr]   Downloaded ravif v0.11.10
[INFO] [stderr]   Downloaded zune-jpeg v0.4.13
[INFO] [stderr]   Downloaded bytemuck v1.18.0
[INFO] [stderr]   Downloaded bitstream-io v2.5.3
[INFO] [stderr]   Downloaded toml_edit v0.22.21
[INFO] [stderr]   Downloaded cc v1.1.21
[INFO] [stderr]   Downloaded clap v4.5.18
[INFO] [stderr]   Downloaded clap_builder v4.5.18
[INFO] [stderr]   Downloaded whoami v1.5.2
[INFO] [stderr]   Downloaded askama_actix v0.14.0
[INFO] [stderr]   Downloaded impl-more v0.1.6
[INFO] [stderr]   Downloaded zstd v0.13.2
[INFO] [stderr]   Downloaded zstd-safe v7.2.1
[INFO] [stderr]   Downloaded rstest v0.22.0
[INFO] [stderr]   Downloaded rstest_macros v0.22.0
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc2/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc2/target:/opt/rustwide/target:rw,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" "-m" "1610612736" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:8683fc1fc2eb5c9ac98e0d076ab094b2ffac7f99da555d2b6a2e27f346de2ec7" "sleep" "infinity", kill_on_drop: false }`
[INFO] [stdout] 4cc6351eb82edfd3679f10619a37272313d6c32489cf4777bb86968bd60e8634
[INFO] running `Command { std: "docker" "start" "4cc6351eb82edfd3679f10619a37272313d6c32489cf4777bb86968bd60e8634", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "4cc6351eb82edfd3679f10619a37272313d6c32489cf4777bb86968bd60e8634", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-w" "/opt/rustwide/workdir" "--user" "0:0" "4cc6351eb82edfd3679f10619a37272313d6c32489cf4777bb86968bd60e8634" "/opt/rustwide/cargo-home/bin/cargo" "+a621e2b446eafb53c7a8569f225e0b8cc2429a68" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "4cc6351eb82edfd3679f10619a37272313d6c32489cf4777bb86968bd60e8634", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "RUSTDOCFLAGS=--cap-lints=forbid" "-w" "/opt/rustwide/workdir" "--user" "0:0" "4cc6351eb82edfd3679f10619a37272313d6c32489cf4777bb86968bd60e8634" "/opt/rustwide/cargo-home/bin/cargo" "+a621e2b446eafb53c7a8569f225e0b8cc2429a68" "check" "--frozen" "--all" "--all-targets" "--message-format=json", kill_on_drop: false }`
[INFO] [stderr] warning: binary `hello_world` should have a kebab-case name
[INFO] [stderr]   |
[INFO] [stderr] 1 | /opt/rustwide/target/.../hello_world
[INFO] [stderr]   |                          ^^^^^^^^^^^
[INFO] [stderr]   |
[INFO] [stderr]   = note: `cargo::non_kebab_case_bins` is set to `warn` by default
[INFO] [stderr] help: to change the binary name to `hello-world`, convert `package.name`
[INFO] [stderr]  --> chapter2/hello_world/Cargo.toml:2:8
[INFO] [stderr]   |
[INFO] [stderr] 2 - name = "hello_world"
[INFO] [stderr] 2 + name = "hello-world"
[INFO] [stderr]   |
[INFO] [stderr] help: to change the binary name to `hello-world`, specify `bin.name`
[INFO] [stderr]  --> chapter2/hello_world/Cargo.toml:6:16
[INFO] [stderr]   |
[INFO] [stderr] 6 ~ [dependencies]
[INFO] [stderr] 7 + [[bin]]
[INFO] [stderr] 8 + name = "hello-world"
[INFO] [stderr] 9 + path = "src/main.rs"
[INFO] [stderr]   |
[INFO] [stderr] warning: `hello_world` (manifest) generated 1 warning
[INFO] [stderr] warning: binary `use_remote_crate` should have a kebab-case name
[INFO] [stderr]    |
[INFO] [stderr]  1 | /opt/rustwide/target/.../use_remote_crate
[INFO] [stderr]    |                          ^^^^^^^^^^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr]    = note: `cargo::non_kebab_case_bins` is set to `warn` by default
[INFO] [stderr] help: to change the binary name to `use-remote-crate`, convert `package.name`
[INFO] [stderr]   --> chapter7/use_remote_crate/Cargo.toml:2:8
[INFO] [stderr]    |
[INFO] [stderr]  2 - name = "use_remote_crate"
[INFO] [stderr]  2 + name = "use-remote-crate"
[INFO] [stderr]    |
[INFO] [stderr] help: to change the binary name to `use-remote-crate`, specify `bin.name`
[INFO] [stderr]   --> chapter7/use_remote_crate/Cargo.toml:7:101
[INFO] [stderr]    |
[INFO] [stderr]  7 ~ my_library = {git="https://github.com/estie-inc/rust-book", package = "my_library", branch = "main"}
[INFO] [stderr]  8 + [[bin]]
[INFO] [stderr]  9 + name = "use-remote-crate"
[INFO] [stderr] 10 + path = "src/main.rs"
[INFO] [stderr]    |
[INFO] [stderr] warning: `use_remote_crate` (manifest) generated 1 warning
[INFO] [stderr] warning: binary `another_bin` should have a kebab-case name
[INFO] [stderr]    |
[INFO] [stderr]  1 | /opt/rustwide/target/.../another_bin
[INFO] [stderr]    |                          ^^^^^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr]    = note: `cargo::non_kebab_case_bins` is set to `warn` by default
[INFO] [stderr] help: to change the binary name to `another-bin`, convert `package.name`
[INFO] [stderr]   --> chapter7/another_bin/Cargo.toml:2:8
[INFO] [stderr]    |
[INFO] [stderr]  2 - name = "another_bin"
[INFO] [stderr]  2 + name = "another-bin"
[INFO] [stderr]    |
[INFO] [stderr] help: to change the binary name to `another-bin`, specify `bin.name`
[INFO] [stderr]   --> chapter7/another_bin/Cargo.toml:7:60
[INFO] [stderr]    |
[INFO] [stderr]  7 ~ my_library = { version = "0.1.0", path = "../my_library" }
[INFO] [stderr]  8 + [[bin]]
[INFO] [stderr]  9 + name = "another-bin"
[INFO] [stderr] 10 + path = "src/main.rs"
[INFO] [stderr]    |
[INFO] [stderr] warning: `another_bin` (manifest) generated 1 warning
[INFO] [stderr]    Compiling libc v0.2.158
[INFO] [stderr]    Compiling serde v1.0.210
[INFO] [stderr]    Compiling lock_api v0.4.12
[INFO] [stderr]    Compiling syn v2.0.77
[INFO] [stderr]     Checking smallvec v1.13.2
[INFO] [stderr]    Compiling slab v0.4.9
[INFO] [stderr]    Compiling thiserror v1.0.64
[INFO] [stderr]     Checking nom v7.1.3
[INFO] [stderr]    Compiling serde_json v1.0.128
[INFO] [stderr]     Checking miniz_oxide v0.8.0
[INFO] [stderr]    Compiling zerocopy v0.7.35
[INFO] [stderr]     Checking futures-channel v0.3.30
[INFO] [stderr]     Checking futures-io v0.3.30
[INFO] [stderr]     Checking flate2 v1.0.33
[INFO] [stderr]    Compiling allocator-api2 v0.2.18
[INFO] [stderr]    Compiling pin-project-lite v0.2.14
[INFO] [stderr]     Checking anstyle-parse v0.2.5
[INFO] [stderr]     Checking spin v0.9.8
[INFO] [stderr]     Checking getrandom v0.2.15
[INFO] [stderr]     Checking parking_lot_core v0.9.10
[INFO] [stderr]     Checking mio v1.0.2
[INFO] [stderr]    Compiling jobserver v0.1.32
[INFO] [stderr]     Checking socket2 v0.5.7
[INFO] [stderr]     Checking parking_lot v0.12.3
[INFO] [stderr]     Checking signal-hook-registry v1.4.2
[INFO] [stderr]    Compiling ahash v0.8.11
[INFO] [stderr]    Compiling cc v1.1.21
[INFO] [stderr]     Checking anstyle v1.0.8
[INFO] [stderr]     Checking anstyle-query v1.1.1
[INFO] [stderr]     Checking colorchoice v1.0.2
[INFO] [stderr]     Checking flume v0.11.0
[INFO] [stderr]     Checking tokio v1.40.0
[INFO] [stderr]    Compiling hashbrown v0.14.5
[INFO] [stderr]     Checking clap_lex v0.7.2
[INFO] [stderr]     Checking anstream v0.6.15
[INFO] [stderr]    Compiling bytes v1.7.2
[INFO] [stderr]    Compiling futures-core v0.3.30
[INFO] [stderr]     Checking clap_builder v4.5.18
[INFO] [stderr]    Compiling tracing-core v0.1.32
[INFO] [stderr]    Compiling anyhow v1.0.89
[INFO] [stderr]    Compiling indexmap v2.5.0
[INFO] [stderr]    Compiling log v0.4.22
[INFO] [stderr]     Checking num-bigint v0.4.6
[INFO] [stderr]    Compiling generic-array v0.14.7
[INFO] [stderr]     Checking crypto-common v0.1.6
[INFO] [stderr]     Checking block-buffer v0.10.4
[INFO] [stderr]     Checking rand_core v0.6.4
[INFO] [stderr]     Checking aligned-vec v0.5.0
[INFO] [stderr]    Compiling built v0.7.4
[INFO] [stderr]    Compiling futures-sink v0.3.30
[INFO] [stderr]     Checking arrayvec v0.7.6
[INFO] [stderr]    Compiling tinyvec v1.8.0
[INFO] [stderr]    Compiling libsqlite3-sys v0.27.0
[INFO] [stderr]     Checking v_frame v0.3.8
[INFO] [stderr]    Compiling rav1e v0.7.1
[INFO] [stderr]     Checking digest v0.10.7
[INFO] [stderr]    Compiling zstd-sys v2.0.13+zstd.1.5.6
[INFO] [stderr]    Compiling unicase v2.7.0
[INFO] [stderr]    Compiling num-traits v0.2.19
[INFO] [stderr]    Compiling crossbeam-utils v0.8.20
[INFO] [stderr]     Checking bytemuck v1.18.0
[INFO] [stderr]     Checking cpufeatures v0.2.14
[INFO] [stderr]     Checking miniz_oxide v0.7.4
[INFO] [stderr]     Checking num-rational v0.4.2
[INFO] [stderr]    Compiling unicode-normalization v0.1.24
[INFO] [stderr]     Checking av1-grain v0.2.3
[INFO] [stderr]    Compiling serde_derive v1.0.210
[INFO] [stderr]    Compiling thiserror-impl v1.0.64
[INFO] [stderr]    Compiling zerocopy-derive v0.7.35
[INFO] [stderr]    Compiling tracing-attributes v0.1.27
[INFO] [stderr]    Compiling futures-macro v0.3.30
[INFO] [stderr]     Checking futures-util v0.3.30
[INFO] [stderr]    Compiling clap_derive v4.5.18
[INFO] [stderr]    Compiling profiling-procmacros v1.0.15
[INFO] [stderr]     Checking profiling v1.0.15
[INFO] [stderr]    Compiling arg_enum_proc_macro v0.3.4
[INFO] [stderr]     Checking tracing v0.1.40
[INFO] [stderr]     Checking ppv-lite86 v0.2.20
[INFO] [stderr]    Compiling num-derive v0.4.2
[INFO] [stderr]     Checking rand_chacha v0.3.1
[INFO] [stderr]     Checking rand v0.8.5
[INFO] [stderr]    Compiling simd_helpers v0.1.0
[INFO] [stderr]     Checking maybe-rayon v0.1.1
[INFO] [stderr]    Compiling futures-task v0.3.30
[INFO] [stderr]     Checking clap v4.5.18
[INFO] [stderr]     Checking weezl v0.1.8
[INFO] [stderr]    Compiling noop_proc_macro v0.3.0
[INFO] [stderr]     Checking quick-error v2.0.1
[INFO] [stderr]    Compiling unicode-bidi v0.3.15
[INFO] [stderr]     Checking imgref v1.10.1
[INFO] [stderr]     Checking bitstream-io v2.5.3
[INFO] [stderr]    Compiling form_urlencoded v1.2.1
[INFO] [stderr]     Checking loop9 v0.1.5
[INFO] [stderr]    Compiling idna v0.5.0
[INFO] [stderr]     Checking futures-executor v0.3.30
[INFO] [stderr]     Checking rgb v0.8.50
[INFO] [stderr]     Checking avif-serialize v0.8.1
[INFO] [stderr]     Checking fdeflate v0.3.4
[INFO] [stderr]     Checking zune-inflate v0.2.54
[INFO] [stderr]     Checking half v2.4.1
[INFO] [stderr]     Checking zune-core v0.4.12
[INFO] [stderr]    Compiling rustix v0.38.37
[INFO] [stderr]    Compiling zstd-safe v7.2.1
[INFO] [stderr]     Checking bit_field v0.10.2
[INFO] [stderr]     Checking lebe v0.5.2
[INFO] [stderr]     Checking jpeg-decoder v0.3.1
[INFO] [stderr]    Compiling unicode_categories v0.1.1
[INFO] [stderr]    Compiling sqlformat v0.2.6
[INFO] [stderr]     Checking tiff v0.9.1
[INFO] [stderr]    Compiling either v1.13.0
[INFO] [stderr]     Checking itertools v0.12.1
[INFO] [stderr]     Checking rayon v1.10.0
[INFO] [stderr]     Checking exr v1.72.0
[INFO] [stderr]     Checking zune-jpeg v0.4.13
[INFO] [stderr]    Compiling tokio-stream v0.1.16
[INFO] [stderr]     Checking gif v0.13.1
[INFO] [stderr]     Checking png v0.17.13
[INFO] [stderr]     Checking image-webp v0.1.3
[INFO] [stderr]    Compiling sha2 v0.10.8
[INFO] [stderr]    Compiling crossbeam-queue v0.3.11
[INFO] [stderr]    Compiling atoi v2.0.0
[INFO] [stderr]    Compiling mime_guess v2.0.5
[INFO] [stderr]    Compiling futures-intrusive v0.5.0
[INFO] [stderr]    Compiling url v2.5.2
[INFO] [stderr]     Checking tokio-util v0.7.12
[INFO] [stderr]     Checking qoi v0.4.1
[INFO] [stderr]    Compiling hashlink v0.8.4
[INFO] [stderr]    Compiling httparse v1.9.4
[INFO] [stderr]    Compiling event-listener v2.5.3
[INFO] [stderr]    Compiling time-core v0.1.2
[INFO] [stderr]    Compiling libm v0.2.8
[INFO] [stderr]    Compiling bitflags v2.6.0
[INFO] [stderr]     Checking regex-syntax v0.8.4
[INFO] [stderr]    Compiling syn v1.0.109
[INFO] [stderr]    Compiling linux-raw-sys v0.4.14
[INFO] [stderr]    Compiling time-macros v0.2.18
[INFO] [stderr]     Checking brotli-decompressor v4.0.1
[INFO] [stderr]     Checking actix-utils v3.0.1
[INFO] [stderr]     Checking actix-rt v2.10.0
[INFO] [stderr]    Compiling bytestring v1.3.1
[INFO] [stderr]    Compiling sqlx-core v0.7.4
[INFO] [stderr]     Checking actix-service v2.0.2
[INFO] [stderr]     Checking thread_local v1.1.8
[INFO] [stderr]    Compiling urlencoding v2.1.3
[INFO] [stderr]    Compiling mime v0.3.17
[INFO] [stderr]    Compiling fastrand v2.1.1
[INFO] [stderr]    Compiling derive_more v0.99.18
[INFO] [stderr]     Checking regex-automata v0.4.7
[INFO] [stderr]    Compiling heck v0.4.1
[INFO] [stderr]     Checking zstd v0.13.2
[INFO] [stderr]     Checking time v0.3.36
[INFO] [stderr]     Checking actix-codec v0.5.2
[INFO] [stderr]    Compiling actix-router v0.5.3
[INFO] [stderr]    Compiling tempfile v3.12.0
[INFO] [stderr]     Checking ravif v0.11.10
[INFO] [stderr]     Checking fuzzy-matcher v0.3.7
[INFO] [stderr]     Checking brotli v6.0.0
[INFO] [stderr]     Checking image v0.25.2
[INFO] [stderr]     Checking regex v1.10.6
[INFO] [stderr]    Compiling sqlx-sqlite v0.7.4
[INFO] [stderr]     Checking h2 v0.3.26
[INFO] [stderr]    Compiling basic-toml v0.1.9
[INFO] [stderr]     Checking local-channel v0.1.5
[INFO] [stderr]     Checking sha1 v0.10.6
[INFO] [stderr]    Compiling askama_parser v0.2.1
[INFO] [stderr]     Checking chrono v0.4.38
[INFO] [stderr]    Compiling sqlx-macros-core v0.7.4
[INFO] [stderr]     Checking humansize v2.1.3
[INFO] [stderr]     Checking cookie v0.16.2
[INFO] [stderr]    Compiling rustc_version v0.4.1
[INFO] [stderr]    Compiling actix-web-codegen v4.3.0
[INFO] [stderr]     Checking actix-server v2.5.0
[INFO] [stderr]     Checking serde_urlencoded v0.7.1
[INFO] [stderr]    Compiling actix-macros v0.2.4
[INFO] [stderr]    Compiling aho-corasick v1.1.3
[INFO] [stderr]    Compiling winnow v0.6.18
[INFO] [stderr]     Checking impl-more v0.1.6
[INFO] [stderr]     Checking askama_escape v0.10.3
[INFO] [stderr]    Compiling rstest_macros v0.22.0
[INFO] [stderr]    Compiling sqlx-macros v0.7.4
[INFO] [stderr]    Compiling glob v0.3.1
[INFO] [stderr]     Checking my_package v0.1.0 (/opt/rustwide/workdir/chapter7/my_package)
[INFO] [stderr]    Compiling relative-path v1.9.3
[INFO] [stderr]     Checking actix-http v3.9.0
[INFO] [stderr]     Checking futures v0.3.30
[INFO] [stderr]    Compiling askama_derive v0.12.5
[INFO] [stderr]     Checking futures-timer v3.0.3
[INFO] [stderr]     Checking csv v1.3.0
[INFO] [stderr]     Checking my_library v0.1.0 (/opt/rustwide/workdir/chapter7/my_library)
[INFO] [stderr]     Checking my_library v0.1.0 (https://github.com/estie-inc/rust-book?branch=main#e0d2c4a2)
[INFO] [stderr]     Checking use_remote_crate v0.1.0 (/opt/rustwide/workdir/chapter7/use_remote_crate)
[INFO] [stderr]     Checking another_bin v0.1.0 (/opt/rustwide/workdir/chapter7/another_bin)
[INFO] [stderr]     Checking monestie v0.1.0 (/opt/rustwide/workdir/chapter6)
[INFO] [stderr]     Checking chapter9 v0.1.0 (/opt/rustwide/workdir/chapter9)
[INFO] [stderr]     Checking chapter8 v0.1.0 (/opt/rustwide/workdir/chapter8)
[INFO] [stderr]     Checking thumbnailer-sync v0.1.0 (/opt/rustwide/workdir/chapter12/thumbnailer-sync)
[INFO] [stderr]     Checking thumbnailer-channel v0.1.0 (/opt/rustwide/workdir/chapter12/thumbnailer-channel)
[INFO] [stderr]     Checking thumbnailer-rayon v0.1.0 (/opt/rustwide/workdir/chapter12/thumbnailer-rayon)
[INFO] [stderr]     Checking thumbnailer-parallel-thumbnail v0.1.0 (/opt/rustwide/workdir/chapter12/thumbnailer-parallel-thumbnail)
[INFO] [stderr]     Checking simple-poker v0.1.0 (/opt/rustwide/workdir/chapter4)
[INFO] [stderr]     Checking arithmetic-operations-quiz v0.1.0 (/opt/rustwide/workdir/chapter3)
[INFO] [stderr]     Checking merge-array v0.1.0 (/opt/rustwide/workdir/chapter13/merge-array)
[INFO] [stderr]     Checking calculator-5-2 v0.1.0 (/opt/rustwide/workdir/chapter5/calculator-5-2)
[INFO] [stderr]     Checking parenthesis v0.1.0 (/opt/rustwide/workdir/chapter13/parenthesis)
[INFO] [stderr]     Checking calculator-5-3 v0.1.0 (/opt/rustwide/workdir/chapter5/calculator-5-3)
[INFO] [stderr]     Checking calculator-5-5 v0.1.0 (/opt/rustwide/workdir/chapter5/calculator-5-5)
[INFO] [stderr]     Checking hello_world v0.1.0 (/opt/rustwide/workdir/chapter2/hello_world)
[INFO] [stderr]     Checking simple-parallel-add v0.1.0 (/opt/rustwide/workdir/chapter12/simple-parallel-add)
[INFO] [stderr]     Checking calculator-5-4 v0.1.0 (/opt/rustwide/workdir/chapter5/calculator-5-4)
[INFO] [stderr]    Compiling toml_edit v0.22.21
[INFO] [stderr]     Checking askama v0.12.1
[INFO] [stderr]     Checking sqlx v0.7.4
[INFO] [stderr]     Checking actix-web v4.9.0
[INFO] [stderr]    Compiling proc-macro-crate v3.2.0
[INFO] [stderr]     Checking askama_actix v0.14.0
[INFO] [stderr]     Checking chapter10 v0.1.0 (/opt/rustwide/workdir/chapter10)
[INFO] [stderr]     Checking chapter11 v0.1.0 (/opt/rustwide/workdir/chapter11)
[INFO] [stderr]     Checking rstest v0.22.0
[INFO] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 3m 29s
[INFO] running `Command { std: "docker" "inspect" "4cc6351eb82edfd3679f10619a37272313d6c32489cf4777bb86968bd60e8634", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "4cc6351eb82edfd3679f10619a37272313d6c32489cf4777bb86968bd60e8634", kill_on_drop: false }`
[INFO] [stdout] 4cc6351eb82edfd3679f10619a37272313d6c32489cf4777bb86968bd60e8634
