[INFO] fetching crate photon 0.0.1...
[INFO] testing photon-0.0.1 against beta-2025-10-28 for beta-1.92-2
[INFO] extracting crate photon 0.0.1 into /workspace/builds/worker-5-tc2/source
[INFO] started tweaking crates.io crate photon 0.0.1
[INFO] finished tweaking crates.io crate photon 0.0.1
[INFO] tweaked toml for crates.io crate photon 0.0.1 written to /workspace/builds/worker-5-tc2/source/Cargo.toml
[INFO] validating manifest of crates.io crate photon 0.0.1 on toolchain beta-2025-10-28
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+beta-2025-10-28" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+beta-2025-10-28" "generate-lockfile" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+beta-2025-10-28" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc2/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2025-10-28" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] [stdout] a42d23b6693d5120873d279b58f7e05815975a5a6fd7c18ac02e9c3683db84dc
[INFO] running `Command { std: "docker" "start" "-a" "a42d23b6693d5120873d279b58f7e05815975a5a6fd7c18ac02e9c3683db84dc", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "a42d23b6693d5120873d279b58f7e05815975a5a6fd7c18ac02e9c3683db84dc", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "a42d23b6693d5120873d279b58f7e05815975a5a6fd7c18ac02e9c3683db84dc", kill_on_drop: false }`
[INFO] [stdout] a42d23b6693d5120873d279b58f7e05815975a5a6fd7c18ac02e9c3683db84dc
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc2/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2025-10-28" "build" "--frozen" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] f63a22a0029da8e7f902793279c3d786e1085fc5f89b9f6b47b735e93a01fc47
[INFO] running `Command { std: "docker" "start" "-a" "f63a22a0029da8e7f902793279c3d786e1085fc5f89b9f6b47b735e93a01fc47", kill_on_drop: false }`
[INFO] [stderr]    Compiling photon v0.0.1 (/opt/rustwide/workdir)
[INFO] [stdout] warning: use of `async fn` in public traits is discouraged as auto trait bounds cannot be specified
[INFO] [stdout]  --> src/lib.rs:5:3
[INFO] [stdout]   |
[INFO] [stdout] 5 |   async fn started(&mut self, cx: &mut Self::Context) -> Result<(), Self::Error>;
[INFO] [stdout]   |   ^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = note: you can suppress this lint if you plan to use the trait only in your own code, or do not care about auto traits like `Send` on the `Future`
[INFO] [stdout]   = note: `#[warn(async_fn_in_trait)]` on by default
[INFO] [stdout] help: you can alternatively desugar to a normal `fn` that returns `impl Future` and add any desired bounds such as `Send`, but these cannot be relaxed without a breaking API change
[INFO] [stdout]   |
[INFO] [stdout] 5 -   async fn started(&mut self, cx: &mut Self::Context) -> Result<(), Self::Error>;
[INFO] [stdout] 5 +   fn started(&mut self, cx: &mut Self::Context) -> impl std::future::Future<Output = Result<(), Self::Error>> + Send;
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: use of `async fn` in public traits is discouraged as auto trait bounds cannot be specified
[INFO] [stdout]  --> src/lib.rs:6:3
[INFO] [stdout]   |
[INFO] [stdout] 6 |   async fn stopping(&mut self, cx: &mut Self::Context) -> Result<(), Self::Error>;
[INFO] [stdout]   |   ^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = note: you can suppress this lint if you plan to use the trait only in your own code, or do not care about auto traits like `Send` on the `Future`
[INFO] [stdout] help: you can alternatively desugar to a normal `fn` that returns `impl Future` and add any desired bounds such as `Send`, but these cannot be relaxed without a breaking API change
[INFO] [stdout]   |
[INFO] [stdout] 6 -   async fn stopping(&mut self, cx: &mut Self::Context) -> Result<(), Self::Error>;
[INFO] [stdout] 6 +   fn stopping(&mut self, cx: &mut Self::Context) -> impl std::future::Future<Output = Result<(), Self::Error>> + Send;
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: use of `async fn` in public traits is discouraged as auto trait bounds cannot be specified
[INFO] [stdout]   --> src/lib.rs:12:3
[INFO] [stdout]    |
[INFO] [stdout] 12 |   async fn handle(&mut self, message: M, cx: &mut Self::Context) -> Result<Self::Response, Self::Error>;
[INFO] [stdout]    |   ^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = note: you can suppress this lint if you plan to use the trait only in your own code, or do not care about auto traits like `Send` on the `Future`
[INFO] [stdout] help: you can alternatively desugar to a normal `fn` that returns `impl Future` and add any desired bounds such as `Send`, but these cannot be relaxed without a breaking API change
[INFO] [stdout]    |
[INFO] [stdout] 12 -   async fn handle(&mut self, message: M, cx: &mut Self::Context) -> Result<Self::Response, Self::Error>;
[INFO] [stdout] 12 +   fn handle(&mut self, message: M, cx: &mut Self::Context) -> impl std::future::Future<Output = Result<Self::Response, Self::Error>> + Send;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.14s
[INFO] running `Command { std: "docker" "inspect" "f63a22a0029da8e7f902793279c3d786e1085fc5f89b9f6b47b735e93a01fc47", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "f63a22a0029da8e7f902793279c3d786e1085fc5f89b9f6b47b735e93a01fc47", kill_on_drop: false }`
[INFO] [stdout] f63a22a0029da8e7f902793279c3d786e1085fc5f89b9f6b47b735e93a01fc47
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc2/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2025-10-28" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] e61374f82c39d74e765e953c7548bf39cbf3b1982df68d46f8a871fab4b454b9
[INFO] running `Command { std: "docker" "start" "-a" "e61374f82c39d74e765e953c7548bf39cbf3b1982df68d46f8a871fab4b454b9", kill_on_drop: false }`
[INFO] [stderr]    Compiling photon v0.0.1 (/opt/rustwide/workdir)
[INFO] [stdout] warning: use of `async fn` in public traits is discouraged as auto trait bounds cannot be specified
[INFO] [stdout]  --> src/lib.rs:5:3
[INFO] [stdout]   |
[INFO] [stdout] 5 |   async fn started(&mut self, cx: &mut Self::Context) -> Result<(), Self::Error>;
[INFO] [stdout]   |   ^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = note: you can suppress this lint if you plan to use the trait only in your own code, or do not care about auto traits like `Send` on the `Future`
[INFO] [stdout]   = note: `#[warn(async_fn_in_trait)]` on by default
[INFO] [stdout] help: you can alternatively desugar to a normal `fn` that returns `impl Future` and add any desired bounds such as `Send`, but these cannot be relaxed without a breaking API change
[INFO] [stdout]   |
[INFO] [stdout] 5 -   async fn started(&mut self, cx: &mut Self::Context) -> Result<(), Self::Error>;
[INFO] [stdout] 5 +   fn started(&mut self, cx: &mut Self::Context) -> impl std::future::Future<Output = Result<(), Self::Error>> + Send;
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: use of `async fn` in public traits is discouraged as auto trait bounds cannot be specified
[INFO] [stdout]  --> src/lib.rs:6:3
[INFO] [stdout]   |
[INFO] [stdout] 6 |   async fn stopping(&mut self, cx: &mut Self::Context) -> Result<(), Self::Error>;
[INFO] [stdout]   |   ^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = note: you can suppress this lint if you plan to use the trait only in your own code, or do not care about auto traits like `Send` on the `Future`
[INFO] [stdout] help: you can alternatively desugar to a normal `fn` that returns `impl Future` and add any desired bounds such as `Send`, but these cannot be relaxed without a breaking API change
[INFO] [stdout]   |
[INFO] [stdout] 6 -   async fn stopping(&mut self, cx: &mut Self::Context) -> Result<(), Self::Error>;
[INFO] [stdout] 6 +   fn stopping(&mut self, cx: &mut Self::Context) -> impl std::future::Future<Output = Result<(), Self::Error>> + Send;
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: use of `async fn` in public traits is discouraged as auto trait bounds cannot be specified
[INFO] [stdout]   --> src/lib.rs:12:3
[INFO] [stdout]    |
[INFO] [stdout] 12 |   async fn handle(&mut self, message: M, cx: &mut Self::Context) -> Result<Self::Response, Self::Error>;
[INFO] [stdout]    |   ^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = note: you can suppress this lint if you plan to use the trait only in your own code, or do not care about auto traits like `Send` on the `Future`
[INFO] [stdout] help: you can alternatively desugar to a normal `fn` that returns `impl Future` and add any desired bounds such as `Send`, but these cannot be relaxed without a breaking API change
[INFO] [stdout]    |
[INFO] [stdout] 12 -   async fn handle(&mut self, message: M, cx: &mut Self::Context) -> Result<Self::Response, Self::Error>;
[INFO] [stdout] 12 +   fn handle(&mut self, message: M, cx: &mut Self::Context) -> impl std::future::Future<Output = Result<Self::Response, Self::Error>> + Send;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: use of `async fn` in public traits is discouraged as auto trait bounds cannot be specified
[INFO] [stdout]  --> src/lib.rs:5:3
[INFO] [stdout]   |
[INFO] [stdout] 5 |   async fn started(&mut self, cx: &mut Self::Context) -> Result<(), Self::Error>;
[INFO] [stdout]   |   ^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = note: you can suppress this lint if you plan to use the trait only in your own code, or do not care about auto traits like `Send` on the `Future`
[INFO] [stdout]   = note: `#[warn(async_fn_in_trait)]` on by default
[INFO] [stdout] help: you can alternatively desugar to a normal `fn` that returns `impl Future` and add any desired bounds such as `Send`, but these cannot be relaxed without a breaking API change
[INFO] [stdout]   |
[INFO] [stdout] 5 -   async fn started(&mut self, cx: &mut Self::Context) -> Result<(), Self::Error>;
[INFO] [stdout] 5 +   fn started(&mut self, cx: &mut Self::Context) -> impl std::future::Future<Output = Result<(), Self::Error>> + Send;
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: use of `async fn` in public traits is discouraged as auto trait bounds cannot be specified
[INFO] [stdout]  --> src/lib.rs:6:3
[INFO] [stdout]   |
[INFO] [stdout] 6 |   async fn stopping(&mut self, cx: &mut Self::Context) -> Result<(), Self::Error>;
[INFO] [stdout]   |   ^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = note: you can suppress this lint if you plan to use the trait only in your own code, or do not care about auto traits like `Send` on the `Future`
[INFO] [stdout] help: you can alternatively desugar to a normal `fn` that returns `impl Future` and add any desired bounds such as `Send`, but these cannot be relaxed without a breaking API change
[INFO] [stdout]   |
[INFO] [stdout] 6 -   async fn stopping(&mut self, cx: &mut Self::Context) -> Result<(), Self::Error>;
[INFO] [stdout] 6 +   fn stopping(&mut self, cx: &mut Self::Context) -> impl std::future::Future<Output = Result<(), Self::Error>> + Send;
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: use of `async fn` in public traits is discouraged as auto trait bounds cannot be specified
[INFO] [stdout]   --> src/lib.rs:12:3
[INFO] [stdout]    |
[INFO] [stdout] 12 |   async fn handle(&mut self, message: M, cx: &mut Self::Context) -> Result<Self::Response, Self::Error>;
[INFO] [stdout]    |   ^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = note: you can suppress this lint if you plan to use the trait only in your own code, or do not care about auto traits like `Send` on the `Future`
[INFO] [stdout] help: you can alternatively desugar to a normal `fn` that returns `impl Future` and add any desired bounds such as `Send`, but these cannot be relaxed without a breaking API change
[INFO] [stdout]    |
[INFO] [stdout] 12 -   async fn handle(&mut self, message: M, cx: &mut Self::Context) -> Result<Self::Response, Self::Error>;
[INFO] [stdout] 12 +   fn handle(&mut self, message: M, cx: &mut Self::Context) -> impl std::future::Future<Output = Result<Self::Response, Self::Error>> + Send;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 0.38s
[INFO] running `Command { std: "docker" "inspect" "e61374f82c39d74e765e953c7548bf39cbf3b1982df68d46f8a871fab4b454b9", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "e61374f82c39d74e765e953c7548bf39cbf3b1982df68d46f8a871fab4b454b9", kill_on_drop: false }`
[INFO] [stdout] e61374f82c39d74e765e953c7548bf39cbf3b1982df68d46f8a871fab4b454b9
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc2/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2025-10-28" "test" "--frozen", kill_on_drop: false }`
[INFO] [stdout] 82977e284dc992b776d2190a9e27705e5464474022bc2565a6fb7b514443f6ae
[INFO] running `Command { std: "docker" "start" "-a" "82977e284dc992b776d2190a9e27705e5464474022bc2565a6fb7b514443f6ae", kill_on_drop: false }`
[INFO] [stderr] warning: use of `async fn` in public traits is discouraged as auto trait bounds cannot be specified
[INFO] [stderr]  --> src/lib.rs:5:3
[INFO] [stderr]   |
[INFO] [stderr] 5 |   async fn started(&mut self, cx: &mut Self::Context) -> Result<(), Self::Error>;
[INFO] [stderr]   |   ^^^^^
[INFO] [stderr]   |
[INFO] [stderr]   = note: you can suppress this lint if you plan to use the trait only in your own code, or do not care about auto traits like `Send` on the `Future`
[INFO] [stderr]   = note: `#[warn(async_fn_in_trait)]` on by default
[INFO] [stderr] help: you can alternatively desugar to a normal `fn` that returns `impl Future` and add any desired bounds such as `Send`, but these cannot be relaxed without a breaking API change
[INFO] [stderr]   |
[INFO] [stderr] 5 -   async fn started(&mut self, cx: &mut Self::Context) -> Result<(), Self::Error>;
[INFO] [stderr] 5 +   fn started(&mut self, cx: &mut Self::Context) -> impl std::future::Future<Output = Result<(), Self::Error>> + Send;
[INFO] [stderr]   |
[INFO] [stderr] 
[INFO] [stderr] warning: use of `async fn` in public traits is discouraged as auto trait bounds cannot be specified
[INFO] [stderr]  --> src/lib.rs:6:3
[INFO] [stderr]   |
[INFO] [stderr] 6 |   async fn stopping(&mut self, cx: &mut Self::Context) -> Result<(), Self::Error>;
[INFO] [stderr]   |   ^^^^^
[INFO] [stderr]   |
[INFO] [stderr]   = note: you can suppress this lint if you plan to use the trait only in your own code, or do not care about auto traits like `Send` on the `Future`
[INFO] [stderr] help: you can alternatively desugar to a normal `fn` that returns `impl Future` and add any desired bounds such as `Send`, but these cannot be relaxed without a breaking API change
[INFO] [stderr]   |
[INFO] [stderr] 6 -   async fn stopping(&mut self, cx: &mut Self::Context) -> Result<(), Self::Error>;
[INFO] [stderr] 6 +   fn stopping(&mut self, cx: &mut Self::Context) -> impl std::future::Future<Output = Result<(), Self::Error>> + Send;
[INFO] [stderr]   |
[INFO] [stderr] 
[INFO] [stderr] warning: use of `async fn` in public traits is discouraged as auto trait bounds cannot be specified
[INFO] [stderr]   --> src/lib.rs:12:3
[INFO] [stderr]    |
[INFO] [stderr] 12 |   async fn handle(&mut self, message: M, cx: &mut Self::Context) -> Result<Self::Response, Self::Error>;
[INFO] [stderr]    |   ^^^^^
[INFO] [stderr]    |
[INFO] [stderr]    = note: you can suppress this lint if you plan to use the trait only in your own code, or do not care about auto traits like `Send` on the `Future`
[INFO] [stderr] help: you can alternatively desugar to a normal `fn` that returns `impl Future` and add any desired bounds such as `Send`, but these cannot be relaxed without a breaking API change
[INFO] [stderr]    |
[INFO] [stderr] 12 -   async fn handle(&mut self, message: M, cx: &mut Self::Context) -> Result<Self::Response, Self::Error>;
[INFO] [stderr] 12 +   fn handle(&mut self, message: M, cx: &mut Self::Context) -> impl std::future::Future<Output = Result<Self::Response, Self::Error>> + Send;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] warning: `photon` (lib) generated 3 warnings
[INFO] [stderr] warning: `photon` (lib test) generated 3 warnings (3 duplicates)
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 0.02s
[INFO] [stderr]      Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/photon-44acf7a669f8354c)
[INFO] [stdout] 
[INFO] [stdout] running 0 tests
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
[INFO] [stdout] 
[INFO] [stderr]    Doc-tests photon
[INFO] [stdout] 
[INFO] [stdout] running 0 tests
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
[INFO] [stdout] 
[INFO] running `Command { std: "docker" "inspect" "82977e284dc992b776d2190a9e27705e5464474022bc2565a6fb7b514443f6ae", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "82977e284dc992b776d2190a9e27705e5464474022bc2565a6fb7b514443f6ae", kill_on_drop: false }`
[INFO] [stdout] 82977e284dc992b776d2190a9e27705e5464474022bc2565a6fb7b514443f6ae
