[INFO] fetching crate edjr 0.1.4...
[INFO] testing edjr-0.1.4 against 1.98.0-beta.1 for beta-1.98-1
[INFO] extracting crate edjr 0.1.4 into /workspace/builds/worker-7-tc2/source
[INFO] started tweaking crates.io crate edjr 0.1.4
[INFO] finished tweaking crates.io crate edjr 0.1.4
[INFO] tweaked toml for crates.io crate edjr 0.1.4 written to /workspace/builds/worker-7-tc2/source/Cargo.toml
[INFO] validating manifest of crates.io crate edjr 0.1.4 on toolchain 1.98.0-beta.1
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.98.0-beta.1" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] crate crates.io crate edjr 0.1.4 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" "+1.98.0-beta.1" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-7-tc2/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-7-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:3d5ced03c013a94a2f102a4510f48a6e9184255caf5fd8244f58017bde7f5210" "sleep" "infinity", kill_on_drop: false }`
[INFO] [stdout] c8ee23df1be951572d130f66f7644ac96ac759c24ed483203ad72efe01c73073
[INFO] running `Command { std: "docker" "start" "c8ee23df1be951572d130f66f7644ac96ac759c24ed483203ad72efe01c73073", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "c8ee23df1be951572d130f66f7644ac96ac759c24ed483203ad72efe01c73073", 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" "c8ee23df1be951572d130f66f7644ac96ac759c24ed483203ad72efe01c73073" "/opt/rustwide/cargo-home/bin/cargo" "+1.98.0-beta.1" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "c8ee23df1be951572d130f66f7644ac96ac759c24ed483203ad72efe01c73073", 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=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-w" "/opt/rustwide/workdir" "--user" "0:0" "c8ee23df1be951572d130f66f7644ac96ac759c24ed483203ad72efe01c73073" "/opt/rustwide/cargo-home/bin/cargo" "+1.98.0-beta.1" "build" "--frozen" "--message-format=json", kill_on_drop: false }`
[INFO] [stderr]    Compiling serde_derive v1.0.228
[INFO] [stderr]    Compiling serde_repr v0.1.20
[INFO] [stderr]    Compiling serde_json v1.0.149
[INFO] [stderr]    Compiling serde v1.0.228
[INFO] [stderr]    Compiling chrono v0.4.44
[INFO] [stderr]    Compiling edjr v0.1.4 (/opt/rustwide/workdir)
[INFO] [stdout] warning: unused import: `crate::events::*`
[INFO] [stdout]  --> src/event.rs:2:6
[INFO] [stdout]   |
[INFO] [stdout] 2 | use {crate::events::*, serde::Deserialize};
[INFO] [stdout]   |      ^^^^^^^^^^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = note: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default
[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/async_read.rs:8:5
[INFO] [stdout]   |
[INFO] [stdout] 8 |     async fn read_all(&mut self) -> Result<Vec<JournalEntry>, JournalReadError>;
[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] 8 -     async fn read_all(&mut self) -> Result<Vec<JournalEntry>, JournalReadError>;
[INFO] [stdout] 8 +     fn read_all(&mut self) -> impl std::future::Future<Output = Result<Vec<JournalEntry>, JournalReadError>> + Send;
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 8.85s
[INFO] running `Command { std: "docker" "inspect" "c8ee23df1be951572d130f66f7644ac96ac759c24ed483203ad72efe01c73073", 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=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-w" "/opt/rustwide/workdir" "--user" "0:0" "c8ee23df1be951572d130f66f7644ac96ac759c24ed483203ad72efe01c73073" "/opt/rustwide/cargo-home/bin/cargo" "+1.98.0-beta.1" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] warning: unused import: `crate::events::*`
[INFO] [stdout]  --> src/event.rs:2:6
[INFO] [stdout]   |
[INFO] [stdout] 2 | use {crate::events::*, serde::Deserialize};
[INFO] [stdout]   |      ^^^^^^^^^^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = note: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default
[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/async_read.rs:8:5
[INFO] [stdout]   |
[INFO] [stdout] 8 |     async fn read_all(&mut self) -> Result<Vec<JournalEntry>, JournalReadError>;
[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] 8 -     async fn read_all(&mut self) -> Result<Vec<JournalEntry>, JournalReadError>;
[INFO] [stdout] 8 +     fn read_all(&mut self) -> impl std::future::Future<Output = Result<Vec<JournalEntry>, JournalReadError>> + Send;
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]    Compiling edjr v0.1.4 (/opt/rustwide/workdir)
[INFO] [stdout] warning: unused import: `crate::events::*`
[INFO] [stdout]  --> src/event.rs:2:6
[INFO] [stdout]   |
[INFO] [stdout] 2 | use {crate::events::*, serde::Deserialize};
[INFO] [stdout]   |      ^^^^^^^^^^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = note: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default
[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/async_read.rs:8:5
[INFO] [stdout]   |
[INFO] [stdout] 8 |     async fn read_all(&mut self) -> Result<Vec<JournalEntry>, JournalReadError>;
[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] 8 -     async fn read_all(&mut self) -> Result<Vec<JournalEntry>, JournalReadError>;
[INFO] [stdout] 8 +     fn read_all(&mut self) -> impl std::future::Future<Output = Result<Vec<JournalEntry>, JournalReadError>> + Send;
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 1.02s
[INFO] running `Command { std: "docker" "inspect" "c8ee23df1be951572d130f66f7644ac96ac759c24ed483203ad72efe01c73073", 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=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-w" "/opt/rustwide/workdir" "--user" "0:0" "c8ee23df1be951572d130f66f7644ac96ac759c24ed483203ad72efe01c73073" "/opt/rustwide/cargo-home/bin/cargo" "+1.98.0-beta.1" "test" "--frozen", kill_on_drop: false }`
[INFO] [stdout] 
[INFO] [stdout] running 0 tests
[INFO] [stderr] warning: unused import: `crate::events::*`
[INFO] [stderr]  --> src/event.rs:2:6
[INFO] [stderr]   |
[INFO] [stderr] 2 | use {crate::events::*, serde::Deserialize};
[INFO] [stderr]   |      ^^^^^^^^^^^^^^^^
[INFO] [stderr]   |
[INFO] [stderr]   = note: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default
[INFO] [stderr] 
[INFO] [stderr] warning: use of `async fn` in public traits is discouraged as auto trait bounds cannot be specified
[INFO] [stderr]  --> src/async_read.rs:8:5
[INFO] [stderr]   |
[INFO] [stderr] 8 |     async fn read_all(&mut self) -> Result<Vec<JournalEntry>, JournalReadError>;
[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] 8 -     async fn read_all(&mut self) -> Result<Vec<JournalEntry>, JournalReadError>;
[INFO] [stderr] 8 +     fn read_all(&mut self) -> impl std::future::Future<Output = Result<Vec<JournalEntry>, JournalReadError>> + Send;
[INFO] [stderr]   |
[INFO] [stderr] 
[INFO] [stderr] warning: `edjr` (lib) generated 2 warnings (run `cargo fix --lib -p edjr` to apply 1 suggestion)
[INFO] [stderr] warning: `edjr` (lib test) generated 2 warnings (2 duplicates)
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 0.06s
[INFO] [stderr]      Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/edjr-5ea932b24014945c)
[INFO] [stderr]    Doc-tests edjr
[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] [stdout] 
[INFO] [stdout] running 5 tests
[INFO] [stdout] test src/read.rs - read::Read::read_all (line 11) - compile ... FAILED
[INFO] [stdout] test src/journal.rs - journal::Journal<File>::open (line 19) - compile ... ok
[INFO] [stdout] test src/lib.rs - (line 15) - compile ... ok
[INFO] [stdout] test src/lib.rs - (line 32) - compile ... FAILED
[INFO] [stderr] error: doctest failed, to rerun pass `--doc`
[INFO] [stdout] test src/events/mod.rs - events (line 4) - compile ... FAILED
[INFO] [stdout] 
[INFO] [stdout] failures:
[INFO] [stdout] 
[INFO] [stdout] ---- src/read.rs - read::Read::read_all (line 11) stdout ----
[INFO] [stdout] error[E0596]: cannot borrow `journal` as mutable, as it is not declared as mutable
[INFO] [stdout]   --> src/read.rs:17:19
[INFO] [stdout]    |
[INFO] [stdout] 17 |     let entries = journal.read_all()?;
[INFO] [stdout]    |                   ^^^^^^^ cannot borrow as mutable
[INFO] [stdout]    |
[INFO] [stdout] help: consider changing this to be mutable
[INFO] [stdout]    |
[INFO] [stdout] 16 |     let mut journal = Journal::<File>::open("/Path/to/my/journals/Journal.date.log")?;
[INFO] [stdout]    |         +++
[INFO] [stdout] 
[INFO] [stdout] error: aborting due to 1 previous error
[INFO] [stdout] 
[INFO] [stdout] For more information about this error, try `rustc --explain E0596`.
[INFO] [stdout] Couldn't compile the test.
[INFO] [stdout] ---- src/lib.rs - (line 32) stdout ----
[INFO] [stdout] error[E0433]: cannot find module or crate `tokio` in this scope
[INFO] [stdout]   --> src/lib.rs:37:5
[INFO] [stdout]    |
[INFO] [stdout] 37 |     tokio::fs::File,
[INFO] [stdout]    |     ^^^^^ use of unresolved module or unlinked crate `tokio`
[INFO] [stdout]    |
[INFO] [stdout] help: to make use of source file src/tokio/mod.rs, use `mod tokio` in this file to declare the module
[INFO] [stdout]    |
[INFO] [stdout] 32 + mod tokio;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `tokio` in this scope
[INFO] [stdout]   --> src/lib.rs:40:3
[INFO] [stdout]    |
[INFO] [stdout] 40 | #[tokio::main]
[INFO] [stdout]    |   ^^^^^ use of unresolved module or unlinked crate `tokio`
[INFO] [stdout] 
[INFO] [stdout] error[E0728]: `await` is only allowed inside `async` functions and blocks
[INFO] [stdout]   --> src/lib.rs:44:59
[INFO] [stdout]    |
[INFO] [stdout] 41 | fn main() -> Result<(), Box<dyn Error>> {
[INFO] [stdout]    | --------------------------------------- this is not `async`
[INFO] [stdout] ...
[INFO] [stdout] 44 |     let mut journal = Journal::<File>::open(journal_path).await?;
[INFO] [stdout]    |                                                           ^^^^^ only allowed inside `async` functions and blocks
[INFO] [stdout] 
[INFO] [stdout] error[E0728]: `await` is only allowed inside `async` functions and blocks
[INFO] [stdout]   --> src/lib.rs:45:38
[INFO] [stdout]    |
[INFO] [stdout] 41 | fn main() -> Result<(), Box<dyn Error>> {
[INFO] [stdout]    | --------------------------------------- this is not `async`
[INFO] [stdout] ...
[INFO] [stdout] 45 |     let entries = journal.read_all().await?;
[INFO] [stdout]    |                                      ^^^^^ only allowed inside `async` functions and blocks
[INFO] [stdout] 
[INFO] [stdout] error: aborting due to 4 previous errors
[INFO] [stdout] 
[INFO] [stdout] Some errors have detailed explanations: E0433, E0728.
[INFO] [stdout] For more information about an error, try `rustc --explain E0433`.
[INFO] [stdout] Couldn't compile the test.
[INFO] [stdout] ---- src/events/mod.rs - events (line 4) stdout ----
[INFO] [stdout] error[E0432]: unresolved import `edjr::event::Commander`
[INFO] [stdout]  --> src/events/mod.rs:6:59
[INFO] [stdout]   |
[INFO] [stdout] 6 | use {std::{error::Error, fs::File}, edjr::{Journal, Read, event::Commander}};
[INFO] [stdout]   |                                                           ^^^^^^^---------
[INFO] [stdout]   |                                                                  |
[INFO] [stdout]   |                                                                  no `Commander` in `event`
[INFO] [stdout] 
[INFO] [stdout] error[E0425]: cannot find value `commander` in this scope
[INFO] [stdout]   --> src/events/mod.rs:13:66
[INFO] [stdout]    |
[INFO] [stdout] 13 |             Commander(commader) => println!("I'm commander {}!", commander.name),
[INFO] [stdout]    |                                                                  ^^^^^^^^^
[INFO] [stdout]    |
[INFO] [stdout] help: a local variable with a similar name exists
[INFO] [stdout]    |
[INFO] [stdout] 13 -             Commander(commader) => println!("I'm commander {}!", commander.name),
[INFO] [stdout] 13 +             Commander(commader) => println!("I'm commander {}!", commader.name),
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] error: aborting due to 2 previous errors
[INFO] [stdout] 
[INFO] [stdout] Some errors have detailed explanations: E0425, E0432.
[INFO] [stdout] For more information about an error, try `rustc --explain E0425`.
[INFO] [stdout] Couldn't compile the test.
[INFO] [stdout] 
[INFO] [stdout] failures:
[INFO] [stdout]     src/events/mod.rs - events (line 4)
[INFO] [stdout]     src/lib.rs - (line 32)
[INFO] [stdout]     src/read.rs - read::Read::read_all (line 11)
[INFO] [stdout] 
[INFO] [stdout] test result: FAILED. 2 passed; 3 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.35s
[INFO] [stdout] 
[INFO] [stdout] all doctests ran in 0.43s; merged doctests compilation took 0.08s
[INFO] running `Command { std: "docker" "inspect" "c8ee23df1be951572d130f66f7644ac96ac759c24ed483203ad72efe01c73073", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "c8ee23df1be951572d130f66f7644ac96ac759c24ed483203ad72efe01c73073", kill_on_drop: false }`
[INFO] [stdout] c8ee23df1be951572d130f66f7644ac96ac759c24ed483203ad72efe01c73073
