[INFO] updating cached repository singaraiona/k-rs [INFO] running `"git" "fetch" "--all"` [INFO] [stdout] Fetching origin [INFO] [stderr] From git://github.com/singaraiona/k-rs [INFO] [stderr] * branch HEAD -> FETCH_HEAD [INFO] running `"git" "clone" "work/cache/sources/gh/singaraiona/k-rs" "work/ex/pr-63376/sources/master#60960a260f7b5c695fd0717311d72ce62dd4eb43/gh/singaraiona/k-rs"` [INFO] [stderr] Cloning into 'work/ex/pr-63376/sources/master#60960a260f7b5c695fd0717311d72ce62dd4eb43/gh/singaraiona/k-rs'... [INFO] [stderr] done. [INFO] running `"git" "clone" "work/cache/sources/gh/singaraiona/k-rs" "work/ex/pr-63376/sources/try#266783e4e09e4e9d5307c1c8e695659c58bbcac7/gh/singaraiona/k-rs"` [INFO] [stderr] Cloning into 'work/ex/pr-63376/sources/try#266783e4e09e4e9d5307c1c8e695659c58bbcac7/gh/singaraiona/k-rs'... [INFO] [stderr] done. [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] 5b8c63eea1e95d2e860af4b1fd0825a9ed8e328a [INFO] sha for GitHub repo singaraiona/k-rs: 5b8c63eea1e95d2e860af4b1fd0825a9ed8e328a [INFO] validating manifest of singaraiona/k-rs on toolchain master#60960a260f7b5c695fd0717311d72ce62dd4eb43 [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+60960a260f7b5c695fd0717311d72ce62dd4eb43-alt" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] validating manifest of singaraiona/k-rs on toolchain try#266783e4e09e4e9d5307c1c8e695659c58bbcac7 [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+266783e4e09e4e9d5307c1c8e695659c58bbcac7-alt" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started frobbing singaraiona/k-rs [INFO] finished frobbing singaraiona/k-rs [INFO] frobbed toml for singaraiona/k-rs written to work/ex/pr-63376/sources/master#60960a260f7b5c695fd0717311d72ce62dd4eb43/gh/singaraiona/k-rs/Cargo.toml [INFO] started frobbing singaraiona/k-rs [INFO] finished frobbing singaraiona/k-rs [INFO] frobbed toml for singaraiona/k-rs written to work/ex/pr-63376/sources/try#266783e4e09e4e9d5307c1c8e695659c58bbcac7/gh/singaraiona/k-rs/Cargo.toml [INFO] crate singaraiona/k-rs already has a lockfile, it will not be regenerated [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+60960a260f7b5c695fd0717311d72ce62dd4eb43-alt" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+266783e4e09e4e9d5307c1c8e695659c58bbcac7-alt" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] checking singaraiona/k-rs against try#266783e4e09e4e9d5307c1c8e695659c58bbcac7 for pr-63376 [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/pr-63376/worker-6/try#266783e4e09e4e9d5307c1c8e695659c58bbcac7:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/pr-63376/sources/try#266783e4e09e4e9d5307c1c8e695659c58bbcac7/gh/singaraiona/k-rs:/opt/crater/workdir:ro,Z" "-v" "/mnt/big/crater/work/local/cargo-home:/opt/crater/cargo-home:ro,Z" "-v" "/mnt/big/crater/work/local/rustup-home:/opt/crater/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/opt/crater/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/crater/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/opt/crater/cargo-home" "-e" "RUSTUP_HOME=/opt/crater/rustup-home" "-w" "/opt/crater/workdir" "-m" "1536M" "--network" "none" "rustops/crates-build-env" "/opt/crater/cargo-home/bin/cargo" "+266783e4e09e4e9d5307c1c8e695659c58bbcac7-alt" "check" "--frozen" "--all" "--all-targets"` [INFO] [stdout] 5607282ebf715694c399e7eaff00e13e3b23d26f9f1e94749e0992c79ab55e26 [INFO] running `"docker" "start" "-a" "5607282ebf715694c399e7eaff00e13e3b23d26f9f1e94749e0992c79ab55e26"` [INFO] [stderr] Checking either v1.0.3 [INFO] [stderr] Compiling stacker v0.1.2 [INFO] [stderr] Checking itertools v0.5.9 [INFO] [stderr] Checking k v0.1.1 (/opt/crater/workdir) [INFO] [stderr] warning: unnecessary parentheses around function argument [INFO] [stderr] --> src/parse/arena.rs:132:45 [INFO] [stderr] | [INFO] [stderr] 132 | FromPrimitive::from_u64((((size + a - 1) as u64) / a as u64)).unwrap(); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_parens)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused macro definition [INFO] [stderr] --> src/parse/parser.rs:12:1 [INFO] [stderr] | [INFO] [stderr] 12 | / macro_rules! extract { [INFO] [stderr] 13 | | ($k:expr) => (match $k { [INFO] [stderr] 14 | | AST::Int{value: v} => v, [INFO] [stderr] 15 | | _ => unimplemented!(), [INFO] [stderr] 16 | | }) [INFO] [stderr] 17 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_macros)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around function argument [INFO] [stderr] --> src/parse/arena.rs:132:45 [INFO] [stderr] | [INFO] [stderr] 132 | FromPrimitive::from_u64((((size + a - 1) as u64) / a as u64)).unwrap(); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_parens)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused macro definition [INFO] [stderr] --> src/parse/parser.rs:12:1 [INFO] [stderr] | [INFO] [stderr] 12 | / macro_rules! extract { [INFO] [stderr] 13 | | ($k:expr) => (match $k { [INFO] [stderr] 14 | | AST::Int{value: v} => v, [INFO] [stderr] 15 | | _ => unimplemented!(), [INFO] [stderr] 16 | | }) [INFO] [stderr] 17 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_macros)]` on by default [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/parse/token.rs:6:1 [INFO] [stderr] | [INFO] [stderr] 6 | / lazy_static! { [INFO] [stderr] 7 | | // Tokens [INFO] [stderr] 8 | | static ref TOKENS: Vec = vec![r"^[01]+b", // 0 - BOOL [INFO] [stderr] 9 | | r"^0x[a-zA-Z\d]+", // 1 - HEXLIT [INFO] [stderr] ... | [INFO] [stderr] 30 | | .iter().map(|x| Regex::new(x).unwrap()).collect(); [INFO] [stderr] 31 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/parse/token.rs:6:1 [INFO] [stderr] | [INFO] [stderr] 6 | / lazy_static! { [INFO] [stderr] 7 | | // Tokens [INFO] [stderr] 8 | | static ref TOKENS: Vec = vec![r"^[01]+b", // 0 - BOOL [INFO] [stderr] 9 | | r"^0x[a-zA-Z\d]+", // 1 - HEXLIT [INFO] [stderr] ... | [INFO] [stderr] 30 | | .iter().map(|x| Regex::new(x).unwrap()).collect(); [INFO] [stderr] 31 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/parse/token.rs:6:1 [INFO] [stderr] | [INFO] [stderr] 6 | / lazy_static! { [INFO] [stderr] 7 | | // Tokens [INFO] [stderr] 8 | | static ref TOKENS: Vec = vec![r"^[01]+b", // 0 - BOOL [INFO] [stderr] 9 | | r"^0x[a-zA-Z\d]+", // 1 - HEXLIT [INFO] [stderr] ... | [INFO] [stderr] 30 | | .iter().map(|x| Regex::new(x).unwrap()).collect(); [INFO] [stderr] 31 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/parse/token.rs:6:1 [INFO] [stderr] | [INFO] [stderr] 6 | / lazy_static! { [INFO] [stderr] 7 | | // Tokens [INFO] [stderr] 8 | | static ref TOKENS: Vec = vec![r"^[01]+b", // 0 - BOOL [INFO] [stderr] 9 | | r"^0x[a-zA-Z\d]+", // 1 - HEXLIT [INFO] [stderr] ... | [INFO] [stderr] 30 | | .iter().map(|x| Regex::new(x).unwrap()).collect(); [INFO] [stderr] 31 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0658]: use of unstable library feature 'raw_vec_internals': implementation detail [INFO] [stderr] --> src/parse/arena.rs:1:5 [INFO] [stderr] | [INFO] [stderr] 1 | use alloc::raw_vec::RawVec; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = help: add `#![feature(raw_vec_internals)]` to the crate attributes to enable [INFO] [stderr] [INFO] [stderr] error[E0658]: use of unstable library feature 'raw_vec_internals': implementation detail [INFO] [stderr] --> src/parse/arena.rs:1:5 [INFO] [stderr] | [INFO] [stderr] 1 | use alloc::raw_vec::RawVec; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = help: add `#![feature(raw_vec_internals)]` to the crate attributes to enable [INFO] [stderr] [INFO] [stderr] error[E0658]: use of unstable library feature 'raw_vec_internals': implementation detail [INFO] [stderr] --> src/parse/arena.rs:12:10 [INFO] [stderr] | [INFO] [stderr] 12 | mem: RawVec, [INFO] [stderr] | ^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = help: add `#![feature(raw_vec_internals)]` to the crate attributes to enable [INFO] [stderr] [INFO] [stderr] error[E0658]: use of unstable library feature 'raw_vec_internals': implementation detail [INFO] [stderr] --> src/parse/arena.rs:12:10 [INFO] [stderr] | [INFO] [stderr] 12 | mem: RawVec, [INFO] [stderr] | ^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = help: add `#![feature(raw_vec_internals)]` to the crate attributes to enable [INFO] [stderr] [INFO] [stderr] error[E0658]: use of unstable library feature 'raw_vec_internals': implementation detail [INFO] [stderr] --> src/parse/arena.rs:33:18 [INFO] [stderr] | [INFO] [stderr] 33 | mem: RawVec::new(), [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] error[E0658]: use of unstable library feature 'raw_vec_internals': implementation detail [INFO] [stderr] --> src/parse/arena.rs:33:18 [INFO] [stderr] | [INFO] [stderr] 33 | mem: RawVec::new(), [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] | [INFO] [stderr] = help: add `#![feature(raw_vec_internals)]` to the crate attributes to enable [INFO] [stderr] [INFO] [stderr] error[E0658]: use of unstable library feature 'raw_vec_internals': implementation detail [INFO] [stderr] --> src/parse/arena.rs:41:21 [INFO] [stderr] | [INFO] [stderr] 41 | let mut m = RawVec::with_capacity(capacity * size_of::()); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = help: add `#![feature(raw_vec_internals)]` to the crate attributes to enable [INFO] [stderr] = help: add `#![feature(raw_vec_internals)]` to the crate attributes to enable [INFO] [stderr] [INFO] [stderr] [INFO] [stderr] error[E0658]: use of unstable library feature 'raw_vec_internals': implementation detail [INFO] [stderr] --> src/parse/arena.rs:41:21 [INFO] [stderr] | [INFO] [stderr] 41 | let mut m = RawVec::with_capacity(capacity * size_of::()); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = help: add `#![feature(raw_vec_internals)]` to the crate attributes to enable [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/parse/parser.rs:21:9 [INFO] [stderr] | [INFO] [stderr] 21 | / lazy_static! { [INFO] [stderr] 22 | | static ref RE: Regex = Regex::new(r"(\x22(?:[^\x22\x5C\n]|\.)*\x22)|[a-zA-Z]*[ ]+(/.*)|([a-z\d\]\)]-\.?\d+)|.") [INFO] [stderr] 23 | | .unwrap(); [INFO] [stderr] 24 | | } [INFO] [stderr] | |_________^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/parse/parser.rs:21:9 [INFO] [stderr] | [INFO] [stderr] 21 | / lazy_static! { [INFO] [stderr] 22 | | static ref RE: Regex = Regex::new(r"(\x22(?:[^\x22\x5C\n]|\.)*\x22)|[a-zA-Z]*[ ]+(/.*)|([a-z\d\]\)]-\.?\d+)|.") [INFO] [stderr] 23 | | .unwrap(); [INFO] [stderr] 24 | | } [INFO] [stderr] | |_________^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/parse/parser.rs:21:9 [INFO] [stderr] | [INFO] [stderr] 21 | / lazy_static! { [INFO] [stderr] 22 | | static ref RE: Regex = Regex::new(r"(\x22(?:[^\x22\x5C\n]|\.)*\x22)|[a-zA-Z]*[ ]+(/.*)|([a-z\d\]\)]-\.?\d+)|.") [INFO] [stderr] 23 | | .unwrap(); [INFO] [stderr] 24 | | } [INFO] [stderr] | |_________^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/parse/parser.rs:21:9 [INFO] [stderr] | [INFO] [stderr] 21 | / lazy_static! { [INFO] [stderr] 22 | | static ref RE: Regex = Regex::new(r"(\x22(?:[^\x22\x5C\n]|\.)*\x22)|[a-zA-Z]*[ ]+(/.*)|([a-z\d\]\)]-\.?\d+)|.") [INFO] [stderr] 23 | | .unwrap(); [INFO] [stderr] 24 | | } [INFO] [stderr] | |_________^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'core::str::::trim_right_matches': superseded by `trim_end_matches` [INFO] [stderr] --> src/parse/token.rs:94:24 [INFO] [stderr] | [INFO] [stderr] 94 | let s = self.0.trim_right_matches(pat); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ help: replace the use of the deprecated item: `trim_end_matches` [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'core::str::::trim_right_matches': superseded by `trim_end_matches` [INFO] [stderr] --> src/parse/token.rs:94:24 [INFO] [stderr] | [INFO] [stderr] 94 | let s = self.0.trim_right_matches(pat); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ help: replace the use of the deprecated item: `trim_end_matches` [INFO] [stderr] [INFO] [stderr] error[E0658]: use of unstable library feature 'raw_vec_internals': implementation detail [INFO] [stderr] --> src/parse/arena.rs:42:11 [INFO] [stderr] | [INFO] [stderr] 42 | m.reserve(0, capacity); [INFO] [stderr] | ^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = help: add `#![feature(raw_vec_internals)]` to the crate attributes to enable [INFO] [stderr] [INFO] [stderr] error[E0658]: use of unstable library feature 'raw_vec_internals': implementation detail [INFO] [stderr] --> src/parse/arena.rs:59:52 [INFO] [stderr] | [INFO] [stderr] 59 | unsafe { transmute::<*mut u8, &T>(self.mem.ptr().offset(self.offset(item))) } [INFO] [stderr] | ^^^ [INFO] [stderr] | [INFO] [stderr] = help: add `#![feature(raw_vec_internals)]` to the crate attributes to enable [INFO] [stderr] [INFO] [stderr] error[E0658]: use of unstable library feature 'raw_vec_internals': implementation detail [INFO] [stderr] --> src/parse/arena.rs:64:56 [INFO] [stderr] | [INFO] [stderr] 64 | unsafe { transmute::<*mut u8, &mut T>(self.mem.ptr().offset(self.offset(item))) } [INFO] [stderr] | ^^^ [INFO] [stderr] | [INFO] [stderr] = help: add `#![feature(raw_vec_internals)]` to the crate attributes to enable [INFO] [stderr] [INFO] [stderr] error[E0658]: use of unstable library feature 'raw_vec_internals': implementation detail [INFO] [stderr] --> src/parse/arena.rs:69:52 [INFO] [stderr] | [INFO] [stderr] 69 | unsafe { transmute::<*mut u8, &E>(self.mem.ptr().offset(self.offset(item))) } [INFO] [stderr] | ^^^ [INFO] [stderr] | [INFO] [stderr] = help: add `#![feature(raw_vec_internals)]` to the crate attributes to enable [INFO] [stderr] [INFO] [stderr] error[E0658]: use of unstable library feature 'raw_vec_internals': implementation detail [INFO] [stderr] --> src/parse/arena.rs:74:56 [INFO] [stderr] | [INFO] [stderr] 74 | unsafe { transmute::<*mut u8, &mut E>(self.mem.ptr().offset(self.offset(item))) } [INFO] [stderr] | ^^^ [INFO] [stderr] | [INFO] [stderr] = help: add `#![feature(raw_vec_internals)]` to the crate attributes to enable [INFO] [stderr] [INFO] [stderr] error[E0658]: use of unstable library feature 'raw_vec_internals': implementation detail [INFO] [stderr] --> src/parse/arena.rs:80:52 [INFO] [stderr] | [INFO] [stderr] 80 | unsafe { transmute::<*mut u8, &E>(self.mem.ptr().offset(self.offset(item) + off)) } [INFO] [stderr] | ^^^ [INFO] [stderr] | [INFO] [stderr] = help: add `#![feature(raw_vec_internals)]` to the crate attributes to enable [INFO] [stderr] [INFO] [stderr] error[E0658]: use of unstable library feature 'raw_vec_internals': implementation detail [INFO] [stderr] --> src/parse/arena.rs:86:56 [INFO] [stderr] | [INFO] [stderr] 86 | unsafe { transmute::<*mut u8, &mut E>(self.mem.ptr().offset(self.offset(item) + off)) } [INFO] [stderr] | ^^^ [INFO] [stderr] | [INFO] [stderr] = help: add `#![feature(raw_vec_internals)]` to the crate attributes to enable [INFO] [stderr] [INFO] [stderr] error[E0658]: use of unstable library feature 'raw_vec_internals': implementation detail [INFO] [stderr] --> src/parse/arena.rs:91:56 [INFO] [stderr] | [INFO] [stderr] 91 | unsafe { transmute::<*mut u8, *mut E>(self.mem.ptr().offset(self.offset(item))) } [INFO] [stderr] | ^^^ [INFO] [stderr] | [INFO] [stderr] = help: add `#![feature(raw_vec_internals)]` to the crate attributes to enable [INFO] [stderr] [INFO] [stderr] error[E0658]: use of unstable library feature 'raw_vec_internals': implementation detail [INFO] [stderr] --> src/parse/arena.rs:98:18 [INFO] [stderr] | [INFO] [stderr] 98 | self.mem.reserve(used, size_of::()); [INFO] [stderr] | ^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = help: add `#![feature(raw_vec_internals)]` to the crate attributes to enable [INFO] [stderr] [INFO] [stderr] error[E0658]: use of unstable library feature 'raw_vec_internals': implementation detail [INFO] [stderr] --> src/parse/arena.rs:148:18 [INFO] [stderr] | [INFO] [stderr] 148 | self.mem.reserve(used, size); [INFO] [stderr] | ^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = help: add `#![feature(raw_vec_internals)]` to the crate attributes to enable [INFO] [stderr] [INFO] [stderr] error[E0658]: use of unstable library feature 'raw_vec_internals': implementation detail [INFO] [stderr] --> src/parse/arena.rs:184:18 [INFO] [stderr] | [INFO] [stderr] 184 | self.mem.reserve(used, es); [INFO] [stderr] | ^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = help: add `#![feature(raw_vec_internals)]` to the crate attributes to enable [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'core::str::::trim_left': superseded by `trim_start` [INFO] [stderr] --> src/parse/parser.rs:64:50 [INFO] [stderr] | [INFO] [stderr] 64 | self.text = self.text[x.len()..].trim_left().to_string(); [INFO] [stderr] | ^^^^^^^^^ help: replace the use of the deprecated item: `trim_start` [INFO] [stderr] [INFO] [stderr] error[E0658]: use of unstable library feature 'raw_vec_internals': implementation detail [INFO] [stderr] --> src/parse/arena.rs:42:11 [INFO] [stderr] | [INFO] [stderr] 42 | m.reserve(0, capacity); [INFO] [stderr] | ^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = help: add `#![feature(raw_vec_internals)]` to the crate attributes to enable [INFO] [stderr] [INFO] [stderr] error[E0658]: use of unstable library feature 'raw_vec_internals': implementation detail [INFO] [stderr] --> src/parse/arena.rs:59:52 [INFO] [stderr] | [INFO] [stderr] 59 | unsafe { transmute::<*mut u8, &T>(self.mem.ptr().offset(self.offset(item))) } [INFO] [stderr] | ^^^ [INFO] [stderr] | [INFO] [stderr] = help: add `#![feature(raw_vec_internals)]` to the crate attributes to enable [INFO] [stderr] [INFO] [stderr] error[E0658]: use of unstable library feature 'raw_vec_internals': implementation detail [INFO] [stderr] --> src/parse/arena.rs:64:56 [INFO] [stderr] | [INFO] [stderr] 64 | unsafe { transmute::<*mut u8, &mut T>(self.mem.ptr().offset(self.offset(item))) } [INFO] [stderr] | ^^^ [INFO] [stderr] | [INFO] [stderr] = help: add `#![feature(raw_vec_internals)]` to the crate attributes to enable [INFO] [stderr] [INFO] [stderr] error[E0658]: use of unstable library feature 'raw_vec_internals': implementation detail [INFO] [stderr] --> src/parse/arena.rs:69:52 [INFO] [stderr] | [INFO] [stderr] 69 | unsafe { transmute::<*mut u8, &E>(self.mem.ptr().offset(self.offset(item))) } [INFO] [stderr] | ^^^ [INFO] [stderr] | [INFO] [stderr] = help: add `#![feature(raw_vec_internals)]` to the crate attributes to enable [INFO] [stderr] [INFO] [stderr] error[E0658]: use of unstable library feature 'raw_vec_internals': implementation detail [INFO] [stderr] --> src/parse/arena.rs:74:56 [INFO] [stderr] | [INFO] [stderr] 74 | unsafe { transmute::<*mut u8, &mut E>(self.mem.ptr().offset(self.offset(item))) } [INFO] [stderr] | ^^^ [INFO] [stderr] | [INFO] [stderr] = help: add `#![feature(raw_vec_internals)]` to the crate attributes to enable [INFO] [stderr] [INFO] [stderr] error[E0658]: use of unstable library feature 'raw_vec_internals': implementation detail [INFO] [stderr] --> src/parse/arena.rs:80:52 [INFO] [stderr] | [INFO] [stderr] 80 | unsafe { transmute::<*mut u8, &E>(self.mem.ptr().offset(self.offset(item) + off)) } [INFO] [stderr] | ^^^ [INFO] [stderr] | [INFO] [stderr] = help: add `#![feature(raw_vec_internals)]` to the crate attributes to enable [INFO] [stderr] [INFO] [stderr] error[E0658]: use of unstable library feature 'raw_vec_internals': implementation detail [INFO] [stderr] --> src/parse/arena.rs:86:56 [INFO] [stderr] | [INFO] [stderr] 86 | unsafe { transmute::<*mut u8, &mut E>(self.mem.ptr().offset(self.offset(item) + off)) } [INFO] [stderr] | ^^^ [INFO] [stderr] | [INFO] [stderr] = help: add `#![feature(raw_vec_internals)]` to the crate attributes to enable [INFO] [stderr] [INFO] [stderr] error[E0658]: use of unstable library feature 'raw_vec_internals': implementation detail [INFO] [stderr] --> src/parse/arena.rs:91:56 [INFO] [stderr] | [INFO] [stderr] 91 | unsafe { transmute::<*mut u8, *mut E>(self.mem.ptr().offset(self.offset(item))) } [INFO] [stderr] | ^^^ [INFO] [stderr] | [INFO] [stderr] = help: add `#![feature(raw_vec_internals)]` to the crate attributes to enable [INFO] [stderr] [INFO] [stderr] error[E0658]: use of unstable library feature 'raw_vec_internals': implementation detail [INFO] [stderr] --> src/parse/arena.rs:98:18 [INFO] [stderr] | [INFO] [stderr] 98 | self.mem.reserve(used, size_of::()); [INFO] [stderr] | ^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = help: add `#![feature(raw_vec_internals)]` to the crate attributes to enable [INFO] [stderr] [INFO] [stderr] error[E0658]: use of unstable library feature 'raw_vec_internals': implementation detail [INFO] [stderr] --> src/parse/arena.rs:148:18 [INFO] [stderr] | [INFO] [stderr] 148 | self.mem.reserve(used, size); [INFO] [stderr] | ^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = help: add `#![feature(raw_vec_internals)]` to the crate attributes to enable [INFO] [stderr] [INFO] [stderr] error[E0658]: use of unstable library feature 'raw_vec_internals': implementation detail [INFO] [stderr] --> src/parse/arena.rs:184:18 [INFO] [stderr] | [INFO] [stderr] 184 | self.mem.reserve(used, es); [INFO] [stderr] | ^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = help: add `#![feature(raw_vec_internals)]` to the crate attributes to enable [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'core::str::::trim_left': superseded by `trim_start` [INFO] [stderr] --> src/parse/parser.rs:64:50 [INFO] [stderr] | [INFO] [stderr] 64 | self.text = self.text[x.len()..].trim_left().to_string(); [INFO] [stderr] | ^^^^^^^^^ help: replace the use of the deprecated item: `trim_start` [INFO] [stderr] [INFO] [stderr] error: aborting due to 15 previous errors [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0658`. [INFO] [stderr] error: Could not compile `k`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: aborting due to 15 previous errors [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0658`. [INFO] [stderr] error: Could not compile `k`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "5607282ebf715694c399e7eaff00e13e3b23d26f9f1e94749e0992c79ab55e26"` [INFO] running `"docker" "rm" "-f" "5607282ebf715694c399e7eaff00e13e3b23d26f9f1e94749e0992c79ab55e26"` [INFO] [stdout] 5607282ebf715694c399e7eaff00e13e3b23d26f9f1e94749e0992c79ab55e26