[INFO] updating cached repository https://github.com/fuchsnj/changelog
[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] 9cbb7d6c34f9eec86b10d68e3b815495504a34b1
[INFO] checking fuchsnj/changelog against master#209b2be09fcaff937480d1fbbe8b31646e361c7a for pr-70917
[INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Ffuchsnj%2Fchangelog" "/workspace/builds/worker-12/source"`
[INFO] [stderr] Cloning into '/workspace/builds/worker-12/source'...
[INFO] [stderr] done.
[INFO] validating manifest of git repo https://github.com/fuchsnj/changelog on toolchain 209b2be09fcaff937480d1fbbe8b31646e361c7a
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "read-manifest" "--manifest-path" "Cargo.toml"`
[INFO] started tweaking git repo https://github.com/fuchsnj/changelog
[INFO] finished tweaking git repo https://github.com/fuchsnj/changelog
[INFO] tweaked toml for git repo https://github.com/fuchsnj/changelog written to /workspace/builds/worker-12/source/Cargo.toml
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"`
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "fetch" "--locked" "--manifest-path" "Cargo.toml"`
[INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-12/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-12/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=0" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--network" "none" "rustops/crates-build-env" "/opt/rustwide/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "check" "--frozen" "--all" "--all-targets"`
[INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap.
[INFO] [stdout] aabfa9cfe99d4015a42dae02758a43036fddaf1587b2f79450bb652bfc9ff3a7
[INFO] running `"docker" "start" "-a" "aabfa9cfe99d4015a42dae02758a43036fddaf1587b2f79450bb652bfc9ff3a7"`
[INFO] [stderr]    Compiling memchr v2.3.3
[INFO] [stderr]     Checking futures-sink-preview v0.3.0-alpha.19
[INFO] [stderr]     Checking futures-core-preview v0.3.0-alpha.19
[INFO] [stderr]     Checking futures-io-preview v0.3.0-alpha.19
[INFO] [stderr]     Checking tokio v0.2.18
[INFO] [stderr]     Checking futures-channel-preview v0.3.0-alpha.19
[INFO] [stderr]     Checking futures-util-preview v0.3.0-alpha.19
[INFO] [stderr]     Checking futures-executor-preview v0.3.0-alpha.19
[INFO] [stderr]     Checking futures-preview v0.3.0-alpha.19
[INFO] [stderr]     Checking changelog v0.1.0 (/opt/rustwide/workdir)
[INFO] [stderr] error[E0432]: unresolved import `tokio::runtime::current_thread`
[INFO] [stderr]    --> src/buffer.rs:117:25
[INFO] [stderr]     |
[INFO] [stderr] 117 |     use tokio::runtime::current_thread::Runtime;
[INFO] [stderr]     |                         ^^^^^^^^^^^^^^ could not find `current_thread` in `runtime`
[INFO] [stderr] 
[INFO] [stderr] error[E0432]: unresolved import `tokio::runtime::current_thread`
[INFO] [stderr]   --> src/input.rs:35:25
[INFO] [stderr]    |
[INFO] [stderr] 35 |     use tokio::runtime::current_thread::Runtime;
[INFO] [stderr]    |                         ^^^^^^^^^^^^^^ could not find `current_thread` in `runtime`
[INFO] [stderr] 
[INFO] [stderr] error[E0432]: unresolved import `tokio::runtime::current_thread`
[INFO] [stderr]    --> src/state_map.rs:167:25
[INFO] [stderr]     |
[INFO] [stderr] 167 |     use tokio::runtime::current_thread::Runtime;
[INFO] [stderr]     |                         ^^^^^^^^^^^^^^ could not find `current_thread` in `runtime`
[INFO] [stderr] 
[INFO] [stderr] error[E0432]: unresolved import `tokio::runtime::current_thread`
[INFO] [stderr]    --> src/storage/in_memory.rs:172:25
[INFO] [stderr]     |
[INFO] [stderr] 172 |     use tokio::runtime::current_thread::Runtime;
[INFO] [stderr]     |                         ^^^^^^^^^^^^^^ could not find `current_thread` in `runtime`
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]   --> src/input.rs:40:18
[INFO] [stderr]    |
[INFO] [stderr] 40 |             let (mut tx, rx) = Input::new();
[INFO] [stderr]    |                  ^^^^^^ cannot infer type for type `{integer}`
[INFO] [stderr]    |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]   --> src/input.rs:43:24
[INFO] [stderr]    |
[INFO] [stderr] 43 |             assert_eq!(rx.take(2).collect::<Vec<_>>().await, vec![1, 2]);
[INFO] [stderr]    |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]   --> src/input.rs:40:26
[INFO] [stderr]    |
[INFO] [stderr] 40 |             let (mut tx, rx) = Input::new();
[INFO] [stderr]    |                          ^^ cannot infer type for type `{integer}`
[INFO] [stderr]    |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]   --> src/input.rs:43:24
[INFO] [stderr]    |
[INFO] [stderr] 43 |             assert_eq!(rx.take(2).collect::<Vec<_>>().await, vec![1, 2]);
[INFO] [stderr]    |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]   --> src/input.rs:43:24
[INFO] [stderr]    |
[INFO] [stderr] 43 |             assert_eq!(rx.take(2).collect::<Vec<_>>().await, vec![1, 2]);
[INFO] [stderr]    |                        ^^ cannot infer type for type `{integer}`
[INFO] [stderr]    |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]   --> src/input.rs:43:24
[INFO] [stderr]    |
[INFO] [stderr] 43 |             assert_eq!(rx.take(2).collect::<Vec<_>>().await, vec![1, 2]);
[INFO] [stderr]    |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]   --> src/input.rs:43:24
[INFO] [stderr]    |
[INFO] [stderr] 43 |             assert_eq!(rx.take(2).collect::<Vec<_>>().await, vec![1, 2]);
[INFO] [stderr]    |                        ^^^^^^^^^^ cannot infer type for type `{integer}`
[INFO] [stderr]    |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]   --> src/input.rs:43:24
[INFO] [stderr]    |
[INFO] [stderr] 43 |             assert_eq!(rx.take(2).collect::<Vec<_>>().await, vec![1, 2]);
[INFO] [stderr]    |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]   --> src/input.rs:43:24
[INFO] [stderr]    |
[INFO] [stderr] 43 |             assert_eq!(rx.take(2).collect::<Vec<_>>().await, vec![1, 2]);
[INFO] [stderr]    |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot infer type for type `{integer}`
[INFO] [stderr]    |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]   --> src/input.rs:43:24
[INFO] [stderr]    |
[INFO] [stderr] 43 |             assert_eq!(rx.take(2).collect::<Vec<_>>().await, vec![1, 2]);
[INFO] [stderr]    |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]   --> src/input.rs:43:24
[INFO] [stderr]    |
[INFO] [stderr] 43 |             assert_eq!(rx.take(2).collect::<Vec<_>>().await, vec![1, 2]);
[INFO] [stderr]    |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot infer type for type `{integer}`
[INFO] [stderr]    |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]   --> src/input.rs:43:24
[INFO] [stderr]    |
[INFO] [stderr] 43 |             assert_eq!(rx.take(2).collect::<Vec<_>>().await, vec![1, 2]);
[INFO] [stderr]    |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:177:17
[INFO] [stderr]     |
[INFO] [stderr] 177 |             let changelog = stream::repeat(1_).take(2);
[INFO] [stderr]     |                 ^^^^^^^^^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:206:17
[INFO] [stderr]     |
[INFO] [stderr] 206 | /                 persisted_changelog
[INFO] [stderr] 207 | |                     .stream(3)
[INFO] [stderr] 208 | |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr] 209 | |                     .await,
[INFO] [stderr]     | |__________________________^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:178:17
[INFO] [stderr]     |
[INFO] [stderr] 178 |             let persisted_changelog = changelog.persist(InMemoryStorage::config());
[INFO] [stderr]     |                 ^^^^^^^^^^^^^^^^^^^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:206:17
[INFO] [stderr]     |
[INFO] [stderr] 206 | /                 persisted_changelog
[INFO] [stderr] 207 | |                     .stream(3)
[INFO] [stderr] 208 | |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr] 209 | |                     .await,
[INFO] [stderr]     | |__________________________^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:179:24
[INFO] [stderr]     |
[INFO] [stderr] 179 |             assert_eq!(persisted_changelog.get(0).await, Some(1));
[INFO] [stderr]     |                        ^^^^^^^^^^^^^^^^^^^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:179:24
[INFO] [stderr]     |
[INFO] [stderr] 179 |             assert_eq!(persisted_changelog.get(0).await, Some(1));
[INFO] [stderr]     |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:179:24
[INFO] [stderr]     |
[INFO] [stderr] 179 |             assert_eq!(persisted_changelog.get(0).await, Some(1));
[INFO] [stderr]     |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:179:24
[INFO] [stderr]     |
[INFO] [stderr] 179 |             assert_eq!(persisted_changelog.get(0).await, Some(1));
[INFO] [stderr]     |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:179:24
[INFO] [stderr]     |
[INFO] [stderr] 179 |             assert_eq!(persisted_changelog.get(0).await, Some(1));
[INFO] [stderr]     |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:179:24
[INFO] [stderr]     |
[INFO] [stderr] 179 |             assert_eq!(persisted_changelog.get(0).await, Some(1));
[INFO] [stderr]     |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:180:24
[INFO] [stderr]     |
[INFO] [stderr] 180 |             assert_eq!(persisted_changelog.get(1).await, Some(1));
[INFO] [stderr]     |                        ^^^^^^^^^^^^^^^^^^^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:180:24
[INFO] [stderr]     |
[INFO] [stderr] 180 |             assert_eq!(persisted_changelog.get(1).await, Some(1));
[INFO] [stderr]     |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:180:24
[INFO] [stderr]     |
[INFO] [stderr] 180 |             assert_eq!(persisted_changelog.get(1).await, Some(1));
[INFO] [stderr]     |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:180:24
[INFO] [stderr]     |
[INFO] [stderr] 180 |             assert_eq!(persisted_changelog.get(1).await, Some(1));
[INFO] [stderr]     |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:180:24
[INFO] [stderr]     |
[INFO] [stderr] 180 |             assert_eq!(persisted_changelog.get(1).await, Some(1));
[INFO] [stderr]     |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:180:24
[INFO] [stderr]     |
[INFO] [stderr] 180 |             assert_eq!(persisted_changelog.get(1).await, Some(1));
[INFO] [stderr]     |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:181:24
[INFO] [stderr]     |
[INFO] [stderr] 181 |             assert_eq!(persisted_changelog.get(2).await, None);
[INFO] [stderr]     |                        ^^^^^^^^^^^^^^^^^^^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:181:24
[INFO] [stderr]     |
[INFO] [stderr] 181 |             assert_eq!(persisted_changelog.get(2).await, None);
[INFO] [stderr]     |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:181:24
[INFO] [stderr]     |
[INFO] [stderr] 181 |             assert_eq!(persisted_changelog.get(2).await, None);
[INFO] [stderr]     |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:181:24
[INFO] [stderr]     |
[INFO] [stderr] 181 |             assert_eq!(persisted_changelog.get(2).await, None);
[INFO] [stderr]     |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:181:24
[INFO] [stderr]     |
[INFO] [stderr] 181 |             assert_eq!(persisted_changelog.get(2).await, None);
[INFO] [stderr]     |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:181:24
[INFO] [stderr]     |
[INFO] [stderr] 181 |             assert_eq!(persisted_changelog.get(2).await, None);
[INFO] [stderr]     |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:182:24
[INFO] [stderr]     |
[INFO] [stderr] 182 |             assert_eq!(persisted_changelog.get(0).await, Some(1));
[INFO] [stderr]     |                        ^^^^^^^^^^^^^^^^^^^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:182:24
[INFO] [stderr]     |
[INFO] [stderr] 182 |             assert_eq!(persisted_changelog.get(0).await, Some(1));
[INFO] [stderr]     |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:182:24
[INFO] [stderr]     |
[INFO] [stderr] 182 |             assert_eq!(persisted_changelog.get(0).await, Some(1));
[INFO] [stderr]     |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:182:24
[INFO] [stderr]     |
[INFO] [stderr] 182 |             assert_eq!(persisted_changelog.get(0).await, Some(1));
[INFO] [stderr]     |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:182:24
[INFO] [stderr]     |
[INFO] [stderr] 182 |             assert_eq!(persisted_changelog.get(0).await, Some(1));
[INFO] [stderr]     |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:182:24
[INFO] [stderr]     |
[INFO] [stderr] 182 |             assert_eq!(persisted_changelog.get(0).await, Some(1));
[INFO] [stderr]     |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:183:24
[INFO] [stderr]     |
[INFO] [stderr] 183 |             assert_eq!(persisted_changelog.get(3).await, None);
[INFO] [stderr]     |                        ^^^^^^^^^^^^^^^^^^^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:183:24
[INFO] [stderr]     |
[INFO] [stderr] 183 |             assert_eq!(persisted_changelog.get(3).await, None);
[INFO] [stderr]     |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:183:24
[INFO] [stderr]     |
[INFO] [stderr] 183 |             assert_eq!(persisted_changelog.get(3).await, None);
[INFO] [stderr]     |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:183:24
[INFO] [stderr]     |
[INFO] [stderr] 183 |             assert_eq!(persisted_changelog.get(3).await, None);
[INFO] [stderr]     |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:183:24
[INFO] [stderr]     |
[INFO] [stderr] 183 |             assert_eq!(persisted_changelog.get(3).await, None);
[INFO] [stderr]     |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:183:24
[INFO] [stderr]     |
[INFO] [stderr] 183 |             assert_eq!(persisted_changelog.get(3).await, None);
[INFO] [stderr]     |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:185:17
[INFO] [stderr]     |
[INFO] [stderr] 185 |                 persisted_changelog
[INFO] [stderr]     |                 ^^^^^^^^^^^^^^^^^^^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:185:17
[INFO] [stderr]     |
[INFO] [stderr] 185 | /                 persisted_changelog
[INFO] [stderr] 186 | |                     .stream(0)
[INFO] [stderr] 187 | |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr] 188 | |                     .await,
[INFO] [stderr]     | |__________________________^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:185:17
[INFO] [stderr]     |
[INFO] [stderr] 185 | /                 persisted_changelog
[INFO] [stderr] 186 | |                     .stream(0)
[INFO] [stderr]     | |______________________________^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:185:17
[INFO] [stderr]     |
[INFO] [stderr] 185 | /                 persisted_changelog
[INFO] [stderr] 186 | |                     .stream(0)
[INFO] [stderr] 187 | |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr] 188 | |                     .await,
[INFO] [stderr]     | |__________________________^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:187:27
[INFO] [stderr]     |
[INFO] [stderr] 187 |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr]     |                           ^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:185:17
[INFO] [stderr]     |
[INFO] [stderr] 185 | /                 persisted_changelog
[INFO] [stderr] 186 | |                     .stream(0)
[INFO] [stderr] 187 | |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr] 188 | |                     .await,
[INFO] [stderr]     | |__________________________^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:187:30
[INFO] [stderr]     |
[INFO] [stderr] 187 |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr]     |                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:185:17
[INFO] [stderr]     |
[INFO] [stderr] 185 | /                 persisted_changelog
[INFO] [stderr] 186 | |                     .stream(0)
[INFO] [stderr] 187 | |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr] 188 | |                     .await,
[INFO] [stderr]     | |__________________________^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:185:17
[INFO] [stderr]     |
[INFO] [stderr] 185 | /                 persisted_changelog
[INFO] [stderr] 186 | |                     .stream(0)
[INFO] [stderr] 187 | |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr]     | |_________________________________________________________^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:185:17
[INFO] [stderr]     |
[INFO] [stderr] 185 | /                 persisted_changelog
[INFO] [stderr] 186 | |                     .stream(0)
[INFO] [stderr] 187 | |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr] 188 | |                     .await,
[INFO] [stderr]     | |__________________________^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:185:17
[INFO] [stderr]     |
[INFO] [stderr] 185 | /                 persisted_changelog
[INFO] [stderr] 186 | |                     .stream(0)
[INFO] [stderr] 187 | |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr] 188 | |                     .await,
[INFO] [stderr]     | |__________________________^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:185:17
[INFO] [stderr]     |
[INFO] [stderr] 185 | /                 persisted_changelog
[INFO] [stderr] 186 | |                     .stream(0)
[INFO] [stderr] 187 | |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr] 188 | |                     .await,
[INFO] [stderr]     | |__________________________^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:192:17
[INFO] [stderr]     |
[INFO] [stderr] 192 |                 persisted_changelog
[INFO] [stderr]     |                 ^^^^^^^^^^^^^^^^^^^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:192:17
[INFO] [stderr]     |
[INFO] [stderr] 192 | /                 persisted_changelog
[INFO] [stderr] 193 | |                     .stream(1)
[INFO] [stderr] 194 | |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr] 195 | |                     .await,
[INFO] [stderr]     | |__________________________^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:192:17
[INFO] [stderr]     |
[INFO] [stderr] 192 | /                 persisted_changelog
[INFO] [stderr] 193 | |                     .stream(1)
[INFO] [stderr]     | |______________________________^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:192:17
[INFO] [stderr]     |
[INFO] [stderr] 192 | /                 persisted_changelog
[INFO] [stderr] 193 | |                     .stream(1)
[INFO] [stderr] 194 | |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr] 195 | |                     .await,
[INFO] [stderr]     | |__________________________^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:194:27
[INFO] [stderr]     |
[INFO] [stderr] 194 |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr]     |                           ^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:192:17
[INFO] [stderr]     |
[INFO] [stderr] 192 | /                 persisted_changelog
[INFO] [stderr] 193 | |                     .stream(1)
[INFO] [stderr] 194 | |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr] 195 | |                     .await,
[INFO] [stderr]     | |__________________________^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:194:30
[INFO] [stderr]     |
[INFO] [stderr] 194 |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr]     |                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:192:17
[INFO] [stderr]     |
[INFO] [stderr] 192 | /                 persisted_changelog
[INFO] [stderr] 193 | |                     .stream(1)
[INFO] [stderr] 194 | |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr] 195 | |                     .await,
[INFO] [stderr]     | |__________________________^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:192:17
[INFO] [stderr]     |
[INFO] [stderr] 192 | /                 persisted_changelog
[INFO] [stderr] 193 | |                     .stream(1)
[INFO] [stderr] 194 | |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr]     | |_________________________________________________________^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:192:17
[INFO] [stderr]     |
[INFO] [stderr] 192 | /                 persisted_changelog
[INFO] [stderr] 193 | |                     .stream(1)
[INFO] [stderr] 194 | |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr] 195 | |                     .await,
[INFO] [stderr]     | |__________________________^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:192:17
[INFO] [stderr]     |
[INFO] [stderr] 192 | /                 persisted_changelog
[INFO] [stderr] 193 | |                     .stream(1)
[INFO] [stderr] 194 | |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr] 195 | |                     .await,
[INFO] [stderr]     | |__________________________^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:192:17
[INFO] [stderr]     |
[INFO] [stderr] 192 | /                 persisted_changelog
[INFO] [stderr] 193 | |                     .stream(1)
[INFO] [stderr] 194 | |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr] 195 | |                     .await,
[INFO] [stderr]     | |__________________________^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:199:17
[INFO] [stderr]     |
[INFO] [stderr] 199 |                 persisted_changelog
[INFO] [stderr]     |                 ^^^^^^^^^^^^^^^^^^^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:199:17
[INFO] [stderr]     |
[INFO] [stderr] 199 | /                 persisted_changelog
[INFO] [stderr] 200 | |                     .stream(2)
[INFO] [stderr] 201 | |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr] 202 | |                     .await,
[INFO] [stderr]     | |__________________________^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:199:17
[INFO] [stderr]     |
[INFO] [stderr] 199 | /                 persisted_changelog
[INFO] [stderr] 200 | |                     .stream(2)
[INFO] [stderr]     | |______________________________^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:199:17
[INFO] [stderr]     |
[INFO] [stderr] 199 | /                 persisted_changelog
[INFO] [stderr] 200 | |                     .stream(2)
[INFO] [stderr] 201 | |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr] 202 | |                     .await,
[INFO] [stderr]     | |__________________________^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:201:27
[INFO] [stderr]     |
[INFO] [stderr] 201 |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr]     |                           ^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:199:17
[INFO] [stderr]     |
[INFO] [stderr] 199 | /                 persisted_changelog
[INFO] [stderr] 200 | |                     .stream(2)
[INFO] [stderr] 201 | |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr] 202 | |                     .await,
[INFO] [stderr]     | |__________________________^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:201:30
[INFO] [stderr]     |
[INFO] [stderr] 201 |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr]     |                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:199:17
[INFO] [stderr]     |
[INFO] [stderr] 199 | /                 persisted_changelog
[INFO] [stderr] 200 | |                     .stream(2)
[INFO] [stderr] 201 | |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr] 202 | |                     .await,
[INFO] [stderr]     | |__________________________^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:199:17
[INFO] [stderr]     |
[INFO] [stderr] 199 | /                 persisted_changelog
[INFO] [stderr] 200 | |                     .stream(2)
[INFO] [stderr] 201 | |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr]     | |_________________________________________________________^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:199:17
[INFO] [stderr]     |
[INFO] [stderr] 199 | /                 persisted_changelog
[INFO] [stderr] 200 | |                     .stream(2)
[INFO] [stderr] 201 | |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr] 202 | |                     .await,
[INFO] [stderr]     | |__________________________^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:199:17
[INFO] [stderr]     |
[INFO] [stderr] 199 | /                 persisted_changelog
[INFO] [stderr] 200 | |                     .stream(2)
[INFO] [stderr] 201 | |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr] 202 | |                     .await,
[INFO] [stderr]     | |__________________________^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:199:17
[INFO] [stderr]     |
[INFO] [stderr] 199 | /                 persisted_changelog
[INFO] [stderr] 200 | |                     .stream(2)
[INFO] [stderr] 201 | |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr] 202 | |                     .await,
[INFO] [stderr]     | |__________________________^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:206:17
[INFO] [stderr]     |
[INFO] [stderr] 206 |                 persisted_changelog
[INFO] [stderr]     |                 ^^^^^^^^^^^^^^^^^^^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:206:17
[INFO] [stderr]     |
[INFO] [stderr] 206 | /                 persisted_changelog
[INFO] [stderr] 207 | |                     .stream(3)
[INFO] [stderr] 208 | |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr] 209 | |                     .await,
[INFO] [stderr]     | |__________________________^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:206:17
[INFO] [stderr]     |
[INFO] [stderr] 206 | /                 persisted_changelog
[INFO] [stderr] 207 | |                     .stream(3)
[INFO] [stderr]     | |______________________________^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:206:17
[INFO] [stderr]     |
[INFO] [stderr] 206 | /                 persisted_changelog
[INFO] [stderr] 207 | |                     .stream(3)
[INFO] [stderr] 208 | |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr] 209 | |                     .await,
[INFO] [stderr]     | |__________________________^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:208:27
[INFO] [stderr]     |
[INFO] [stderr] 208 |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr]     |                           ^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:206:17
[INFO] [stderr]     |
[INFO] [stderr] 206 | /                 persisted_changelog
[INFO] [stderr] 207 | |                     .stream(3)
[INFO] [stderr] 208 | |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr] 209 | |                     .await,
[INFO] [stderr]     | |__________________________^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:208:30
[INFO] [stderr]     |
[INFO] [stderr] 208 |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr]     |                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:206:17
[INFO] [stderr]     |
[INFO] [stderr] 206 | /                 persisted_changelog
[INFO] [stderr] 207 | |                     .stream(3)
[INFO] [stderr] 208 | |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr] 209 | |                     .await,
[INFO] [stderr]     | |__________________________^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:206:17
[INFO] [stderr]     |
[INFO] [stderr] 206 | /                 persisted_changelog
[INFO] [stderr] 207 | |                     .stream(3)
[INFO] [stderr] 208 | |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr]     | |_________________________________________________________^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:206:17
[INFO] [stderr]     |
[INFO] [stderr] 206 | /                 persisted_changelog
[INFO] [stderr] 207 | |                     .stream(3)
[INFO] [stderr] 208 | |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr] 209 | |                     .await,
[INFO] [stderr]     | |__________________________^
[INFO] [stderr] 
[INFO] [stderr] error[E0698]: type inside `async` block must be known in this context
[INFO] [stderr]    --> src/storage/in_memory.rs:206:17
[INFO] [stderr]     |
[INFO] [stderr] 206 | /                 persisted_changelog
[INFO] [stderr] 207 | |                     .stream(3)
[INFO] [stderr] 208 | |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr] 209 | |                     .await,
[INFO] [stderr]     | |__________________________^ cannot infer type for type `{integer}`
[INFO] [stderr]     |
[INFO] [stderr] note: the type is part of the `async` block because of this `await`
[INFO] [stderr]    --> src/storage/in_memory.rs:206:17
[INFO] [stderr]     |
[INFO] [stderr] 206 | /                 persisted_changelog
[INFO] [stderr] 207 | |                     .stream(3)
[INFO] [stderr] 208 | |                     .fold(0, |x, y| async move { x + y })
[INFO] [stderr] 209 | |                     .await,
[INFO] [stderr]     | |__________________________^
[INFO] [stderr] 
[INFO] [stderr] error: aborting due to 51 previous errors
[INFO] [stderr] 
[INFO] [stderr] Some errors have detailed explanations: E0432, E0698.
[INFO] [stderr] For more information about an error, try `rustc --explain E0432`.
[INFO] [stderr] error: could not compile `changelog`.
[INFO] [stderr] 
[INFO] [stderr] To learn more, run the command again with --verbose.
[INFO] running `"docker" "inspect" "aabfa9cfe99d4015a42dae02758a43036fddaf1587b2f79450bb652bfc9ff3a7"`
[INFO] running `"docker" "rm" "-f" "aabfa9cfe99d4015a42dae02758a43036fddaf1587b2f79450bb652bfc9ff3a7"`
[INFO] [stdout] aabfa9cfe99d4015a42dae02758a43036fddaf1587b2f79450bb652bfc9ff3a7
