Skip to content

Instantly share code, notes, and snippets.

@ozanmuyes
Created June 3, 2022 00:35
Show Gist options
  • Save ozanmuyes/abd40af29b9a6598684b3ce31d6b797e to your computer and use it in GitHub Desktop.
Save ozanmuyes/abd40af29b9a6598684b3ce31d6b797e to your computer and use it in GitHub Desktop.
This file has been truncated, but you can view the full file.
❯ cargo lipo
[INFO cargo_lipo::meta] Will build universal library for ["flutter_rust_bridge_example"]
[INFO cargo_lipo::lipo] Building "flutter_rust_bridge_example" for "aarch64-apple-ios"
Compiling cfg-if v1.0.0
Compiling scopeguard v1.1.0
Compiling lazy_static v1.4.0
Compiling encoding_index_tests v0.1.4
Compiling adler v1.0.2
Compiling adler32 v1.2.0
Compiling smallvec v1.7.0
Compiling cc v1.0.70
Compiling futures-core v0.3.19
Compiling gimli v0.25.0
Compiling parking_lot_core v0.9.0
Compiling crossbeam-queue v0.3.2
Compiling futures-sink v0.3.19
Compiling either v1.6.1
Compiling weezl v0.1.5
Compiling rustc-demangle v0.1.21
Compiling anyhow v1.0.57
Compiling jpeg-decoder v0.1.22
Compiling lebe v0.5.1
Compiling half v1.8.2
Compiling color_quant v1.1.0
Compiling bit_field v0.10.1
Compiling bitflags v1.3.2
Compiling byteorder v1.4.3
Compiling flutter_rust_bridge_macros v1.32.0 (/Users/ozan/Code/flutter_rust_bridge/frb_macros)
Compiling scoped_threadpool v0.1.9
Compiling bytemuck v1.7.2
Compiling miniz_oxide v0.4.4
Compiling num-traits v0.2.14
Compiling memoffset v0.6.4
Compiling num-integer v0.1.44
Compiling num-bigint v0.4.2
Compiling rayon v1.5.1
Compiling num-iter v0.1.42
Compiling num-rational v0.4.0
Compiling atomic v0.5.0
Compiling libc v0.2.103
Compiling crossbeam-utils v0.8.5
Compiling proc-macro2 v1.0.36
Compiling crossbeam-epoch v0.9.5
Compiling syn v1.0.86
Compiling rayon-core v1.9.1
Compiling crc32fast v1.2.2
Compiling memchr v2.4.1
Compiling encoding-index-simpchinese v1.20141219.5
Compiling encoding-index-tradchinese v1.20141219.5
Compiling encoding-index-korean v1.20141219.5
Compiling encoding-index-japanese v1.20141219.5
Compiling encoding-index-singlebyte v1.20141219.5
Compiling lock_api v0.4.6
Compiling deflate v1.0.0
Compiling deflate v0.9.1
Compiling inflate v0.4.5
Compiling gif v0.11.3
Compiling encoding v0.2.33
Compiling spin v0.9.2
Compiling backtrace v0.3.61
Compiling crossbeam-channel v0.5.1
Compiling num_cpus v1.13.0
Compiling getrandom v0.2.4
Compiling addr2line v0.16.0
Compiling quote v1.0.15
Compiling object v0.26.2
Compiling threadpool v1.8.1
Compiling nanorand v0.6.1
Compiling parking_lot v0.12.0
Compiling flate2 v1.0.22
Compiling png v0.17.2
Compiling crossbeam-deque v0.8.1
Compiling crossbeam v0.8.1
Compiling tiff v0.7.1
Compiling num-complex v0.4.0
Compiling allo-isolate v0.1.13-beta.5
Compiling num v0.4.0
Compiling jpeg-decoder v0.2.1
Compiling flutter_rust_bridge v1.32.0 (/Users/ozan/Code/flutter_rust_bridge/frb_rust)
Compiling pin-project-internal v1.0.10
Compiling pin-project v1.0.10
Compiling flume v0.10.10
Compiling exr v1.4.2
Compiling image v0.24.2
Compiling flutter_rust_bridge_example v0.1.0 (/Users/ozan/Code/flutter_rust_bridge/frb_example/with_flutter/rust)
Finished dev [unoptimized + debuginfo] target(s) in 24.04s
[INFO cargo_lipo::lipo] Building "flutter_rust_bridge_example" for "x86_64-apple-ios"
Compiling cfg-if v1.0.0
Compiling scopeguard v1.1.0
Compiling lazy_static v1.4.0
Compiling adler v1.0.2
Compiling encoding_index_tests v0.1.4
Compiling adler32 v1.2.0
Compiling smallvec v1.7.0
Compiling gimli v0.25.0
Compiling either v1.6.1
Compiling weezl v0.1.5
Compiling futures-sink v0.3.19
Compiling rustc-demangle v0.1.21
Compiling color_quant v1.1.0
Compiling bit_field v0.10.1
Compiling half v1.8.2
Compiling bitflags v1.3.2
error[E0463]: can't find crate for `core`
|
= note: the `x86_64-apple-ios` target may not be installed
= help: consider downloading the target with `rustup target add x86_64-apple-ios`
error[E0463]: can't find crate for `compiler_builtins`
error[E0463]: can't find crate for `core`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/inline_lazy.rs:8:1
|
8 | extern crate core;
| ^^^^^^^^^^^^^^^^^^ can't find crate
|
= note: the `x86_64-apple-ios` target may not be installed
= help: consider downloading the target with `rustup target add x86_64-apple-ios`
error[E0463]: can't find crate for `core`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/scopeguard-1.1.0/src/lib.rs:192:1
|
192 | extern crate core as std;
| ^^^^^^^^^^^^^^^^^^^^^^^^^ can't find crate
|
= note: the `x86_64-apple-ios` target may not be installed
= help: consider downloading the target with `rustup target add x86_64-apple-ios`
For more information about this error, try `rustc --explain E0463`.
error[E0463]: can't find crate for `core`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/adler-1.0.2/src/lib.rs:20:1
|
20 | extern crate core as std;
| ^^^^^^^^^^^^^^^^^^^^^^^^^ can't find crate
|
= note: the `x86_64-apple-ios` target may not be installed
= help: consider downloading the target with `rustup target add x86_64-apple-ios`
error[E0463]: can't find crate for `core`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:21:5
|
21 | use core::ops::DerefMut;
| ^^^^ can't find crate
|
= note: the `x86_64-apple-ios` target may not be installed
= help: consider downloading the target with `rustup target add x86_64-apple-ios`
error: cannot find macro `stringify` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/scopeguard-1.1.0/src/lib.rs:470:24
|
470 | f.debug_struct(stringify!(ScopeGuard))
| ^^^^^^^^^
error[E0463]: can't find crate for `core`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:22:5
|
22 | use core::pin::Pin;
| ^^^^ can't find crate
|
= note: the `x86_64-apple-ios` target may not be installed
= help: consider downloading the target with `rustup target add x86_64-apple-ios`
error[E0463]: can't find crate for `core`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:23:5
|
23 | use core::task::{Context, Poll};
| ^^^^ can't find crate
|
= note: the `x86_64-apple-ios` target may not be installed
= help: consider downloading the target with `rustup target add x86_64-apple-ios`
error: cannot find attribute `derive` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/scopeguard-1.1.0/src/lib.rs:212:3
|
212 | #[derive(Debug)]
| ^^^^^^
error: cannot find attribute `derive` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/adler-1.0.2/src/lib.rs:86:3
|
86 | #[derive(Debug, Copy, Clone)]
| ^^^^^^
error: cannot find attribute `derive` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/adler-1.0.2/src/algo.rs:110:3
|
110 | #[derive(Copy, Clone)]
| ^^^^^^
error[E0463]: can't find crate for `core`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.3.2/src/lib.rs:282:1
|
282 | pub extern crate core as _core;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ can't find crate
|
= note: the `x86_64-apple-ios` target may not be installed
= help: consider downloading the target with `rustup target add x86_64-apple-ios`
error[E0463]: can't find crate for `core`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.6.1/src/lib.rs:18:1
|
18 | extern crate core as std;
| ^^^^^^^^^^^^^^^^^^^^^^^^^ can't find crate
|
= note: the `x86_64-apple-ios` target may not be installed
= help: consider downloading the target with `rustup target add x86_64-apple-ios`
error: could not compile `cfg-if` due to 2 previous errors
warning: build failed, waiting for other jobs to finish...
error: cannot find attribute `derive` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.6.1/src/lib.rs:50:3
|
50 | #[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)]
| ^^^^^^
error: cannot find macro `panic` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.6.1/src/lib.rs:566:17
|
566 | panic!("called `Either::unwrap_left()` on a `Right` value: {:?}", r)
| ^^^^^
error: cannot find macro `panic` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.6.1/src/lib.rs:596:32
|
596 | Either::Left(l) => panic!("called `Either::unwrap_right()` on a `Left` value: {:?}", l),
| ^^^^^
error: cannot find macro `panic` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.6.1/src/lib.rs:625:33
|
625 | Either::Right(r) => panic!("{}: {:?}", msg, r),
| ^^^^^
error: cannot find macro `panic` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.6.1/src/lib.rs:654:32
|
654 | Either::Left(l) => panic!("{}: {:?}", msg, l),
| ^^^^^
error: cannot find attribute `test` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.6.1/src/lib.rs:1021:3
|
1021 | #[test]
| ^^^^
error: cannot find macro `assert_eq` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.6.1/src/lib.rs:1025:5
|
1025 | assert_eq!(e, Left(2));
| ^^^^^^^^^
error: cannot find macro `assert_eq` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.6.1/src/lib.rs:1027:5
|
1027 | assert_eq!(e, Right(2));
| ^^^^^^^^^
error: cannot find macro `assert_eq` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.6.1/src/lib.rs:1028:5
|
1028 | assert_eq!(e.left(), None);
| ^^^^^^^^^
error: cannot find macro `assert_eq` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.6.1/src/lib.rs:1029:5
|
1029 | assert_eq!(e.right(), Some(2));
| ^^^^^^^^^
error: cannot find macro `assert_eq` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.6.1/src/lib.rs:1030:5
|
1030 | assert_eq!(e.as_ref().right(), Some(&2));
| ^^^^^^^^^
error: cannot find macro `assert_eq` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.6.1/src/lib.rs:1031:5
|
1031 | assert_eq!(e.as_mut().right(), Some(&mut 2));
| ^^^^^^^^^
error: cannot find attribute `test` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.6.1/src/lib.rs:1034:3
|
1034 | #[test]
| ^^^^
error: cannot find macro `assert_eq` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.6.1/src/lib.rs:1040:5
|
1040 | assert_eq!(a(), Right(1337));
| ^^^^^^^^^
error: cannot find macro `assert_eq` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.6.1/src/lib.rs:1045:5
|
1045 | assert_eq!(b(), Left(String::from("foo bar")));
| ^^^^^^^^^
error: cannot find attribute `test` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.6.1/src/lib.rs:1048:3
|
1048 | #[test]
| ^^^^
error: cannot find attribute `test` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.6.1/src/lib.rs:1055:3
|
1055 | #[test]
| ^^^^
error: cannot find macro `assert_eq` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.6.1/src/lib.rs:1063:5
|
1063 | assert_eq!(iter.next(), Some(0));
| ^^^^^^^^^
error: cannot find macro `assert_eq` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.6.1/src/lib.rs:1064:5
|
1064 | assert_eq!(iter.count(), 9);
| ^^^^^^^^^
error: cannot find attribute `test` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.6.1/src/lib.rs:1067:3
|
1067 | #[test]
| ^^^^
error: cannot find macro `assert_eq` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.6.1/src/lib.rs:1081:5
|
1081 | assert_eq!(reader.read(&mut buf).unwrap(), buf.len());
| ^^^^^^^^^
error: cannot find macro `assert_eq` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.6.1/src/lib.rs:1082:5
|
1082 | assert_eq!(&buf, &mockdata[..buf.len()]);
| ^^^^^^^^^
error: cannot find macro `assert_eq` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.6.1/src/lib.rs:1092:5
|
1092 | assert_eq!(writer.write(&buf).unwrap(), buf.len());
| ^^^^^^^^^
error: cannot find attribute `test` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.6.1/src/lib.rs:1095:3
|
1095 | #[test]
| ^^^^
error: cannot find macro `assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.6.1/src/lib.rs:1106:5
|
1106 | assert!(res.is_err());
| ^^^^^^
error[E0463]: can't find crate for `alloc`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:87:1
|
87 | pub extern crate alloc;
| ^^^^^^^^^^^^^^^^^^^^^^^ can't find crate
error: cannot find macro `assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/bit_field-0.10.1/src/lib.rs:216:17
|
216 | assert!(bit < Self::BIT_LENGTH);
| ^^^^^^
...
273 | bitfield_numeric_impl! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize }
| ------------------------------------------------------------------------------ in this macro invocation
|
= note: this error originates in the macro `bitfield_numeric_impl` (in Nightly builds, run with -Z macro-backtrace for more info)
error: cannot find macro `assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/bit_field-0.10.1/src/lib.rs:225:17
|
225 | assert!(range.start < Self::BIT_LENGTH);
| ^^^^^^
...
273 | bitfield_numeric_impl! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize }
| ------------------------------------------------------------------------------ in this macro invocation
|
= note: this error originates in the macro `bitfield_numeric_impl` (in Nightly builds, run with -Z macro-backtrace for more info)
error: could not compile `bitflags` due to 3 previous errors
error: cannot find macro `assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/bit_field-0.10.1/src/lib.rs:226:17
|
226 | assert!(range.end <= Self::BIT_LENGTH);
| ^^^^^^
...
273 | bitfield_numeric_impl! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize }
| ------------------------------------------------------------------------------ in this macro invocation
|
= note: this error originates in the macro `bitfield_numeric_impl` (in Nightly builds, run with -Z macro-backtrace for more info)
error: cannot find macro `assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/bit_field-0.10.1/src/lib.rs:227:17
|
227 | assert!(range.start < range.end);
| ^^^^^^
...
273 | bitfield_numeric_impl! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize }
| ------------------------------------------------------------------------------ in this macro invocation
|
= note: this error originates in the macro `bitfield_numeric_impl` (in Nightly builds, run with -Z macro-backtrace for more info)
error: cannot find macro `assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/bit_field-0.10.1/src/lib.rs:238:17
|
238 | assert!(bit < Self::BIT_LENGTH);
| ^^^^^^
...
273 | bitfield_numeric_impl! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize }
| ------------------------------------------------------------------------------ in this macro invocation
|
= note: this error originates in the macro `bitfield_numeric_impl` (in Nightly builds, run with -Z macro-backtrace for more info)
error: cannot find macro `assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/bit_field-0.10.1/src/lib.rs:253:17
|
253 | assert!(range.start < Self::BIT_LENGTH);
| ^^^^^^
...
273 | bitfield_numeric_impl! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize }
| ------------------------------------------------------------------------------ in this macro invocation
|
= note: this error originates in the macro `bitfield_numeric_impl` (in Nightly builds, run with -Z macro-backtrace for more info)
error: cannot find macro `assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/bit_field-0.10.1/src/lib.rs:254:17
|
254 | assert!(range.end <= Self::BIT_LENGTH);
| ^^^^^^
...
273 | bitfield_numeric_impl! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize }
| ------------------------------------------------------------------------------ in this macro invocation
|
= note: this error originates in the macro `bitfield_numeric_impl` (in Nightly builds, run with -Z macro-backtrace for more info)
error: cannot find macro `assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/bit_field-0.10.1/src/lib.rs:255:17
|
255 | assert!(range.start < range.end);
| ^^^^^^
...
273 | bitfield_numeric_impl! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize }
| ------------------------------------------------------------------------------ in this macro invocation
|
= note: this error originates in the macro `bitfield_numeric_impl` (in Nightly builds, run with -Z macro-backtrace for more info)
error: cannot find macro `assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/bit_field-0.10.1/src/lib.rs:256:17
|
256 | assert!(value << (Self::BIT_LENGTH - (range.end - range.start)) >>
| ^^^^^^
...
273 | bitfield_numeric_impl! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize }
| ------------------------------------------------------------------------------ in this macro invocation
|
= note: this error originates in the macro `bitfield_numeric_impl` (in Nightly builds, run with -Z macro-backtrace for more info)
error: cannot find macro `assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/bit_field-0.10.1/src/lib.rs:292:9
|
292 | assert!(range.len() <= T::BIT_LENGTH);
| ^^^^^^
error: cannot find macro `assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/bit_field-0.10.1/src/lib.rs:300:9
|
300 | assert!(slice_end - slice_start <= 1);
| ^^^^^^
error: cannot find macro `assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/bit_field-0.10.1/src/lib.rs:327:9
|
327 | assert!(range.len() <= T::BIT_LENGTH);
| ^^^^^^
error: cannot find macro `assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/bit_field-0.10.1/src/lib.rs:334:9
|
334 | assert!(slice_end - slice_start <= 1);
| ^^^^^^
error: cannot find attribute `derive` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:23:3
|
23 | #[derive(PartialEq, Eq, Debug)]
| ^^^^^^
error: cannot find macro `unreachable` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:305:22
|
305 | _ => unreachable!(),
| ^^^^^^^^^^^
error: cannot find macro `unreachable` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:348:26
|
348 | _ => unreachable!(
| ^^^^^^^^^^^
error: cannot find macro `matches` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:700:20
|
700 | if matches!((quote, c), ('\'', '"') | ('"', '\'')) {
| ^^^^^^^
error: cannot find attribute `derive` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/lib.rs:148:3
|
148 | #[derive(Debug, Clone)]
| ^^^^^^
error: cannot find attribute `derive` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/lib.rs:222:3
|
222 | #[derive(Copy, Clone, Debug)]
| ^^^^^^
error: cannot find macro `write` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/lib.rs:254:21
|
254 | write!(size_limited_fmt, "{:#}", d)
| ^^^^^
|
= help: have you added the `#[macro_use]` on the module/import?
error: cannot find macro `write` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/lib.rs:256:21
|
256 | write!(size_limited_fmt, "{}", d)
| ^^^^^
|
= help: have you added the `#[macro_use]` on the module/import?
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/legacy.rs:105:10
|
105 | impl<'a> fmt::Display for Demangle<'a> {
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/legacy.rs:106:27
|
106 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/legacy.rs:106:46
|
106 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared type `Pin`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:123:9
|
123 | Pin::new(&mut **self).poll_ready(cx)
| ^^^ use of undeclared type `Pin`
error[E0433]: failed to resolve: use of undeclared type `Pin`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:127:9
|
127 | Pin::new(&mut **self).start_send(item)
| ^^^ use of undeclared type `Pin`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:93:10
|
93 | impl<'s> fmt::Display for Demangle<'s> {
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:94:27
|
94 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:94:46
|
94 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
| ^^^ use of undeclared crate or module `fmt`
error[E0463]: can't find crate for `std`
|
= note: the `x86_64-apple-ios` target may not be installed
= help: consider downloading the target with `rustup target add x86_64-apple-ios`
error[E0433]: failed to resolve: use of undeclared type `Bound`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/bit_field-0.10.1/src/lib.rs:355:9
|
355 | Bound::Excluded(&value) => value + 1,
| ^^^^^ use of undeclared type `Bound`
error[E0433]: failed to resolve: use of undeclared type `Bound`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/bit_field-0.10.1/src/lib.rs:356:9
|
356 | Bound::Included(&value) => value,
| ^^^^^ use of undeclared type `Bound`
error[E0433]: failed to resolve: use of undeclared type `Bound`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/bit_field-0.10.1/src/lib.rs:357:9
|
357 | Bound::Unbounded => 0,
| ^^^^^ use of undeclared type `Bound`
error[E0433]: failed to resolve: use of undeclared type `Bound`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/bit_field-0.10.1/src/lib.rs:360:9
|
360 | Bound::Excluded(&value) => value,
| ^^^^^ use of undeclared type `Bound`
error[E0433]: failed to resolve: use of undeclared type `Bound`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/bit_field-0.10.1/src/lib.rs:361:9
|
361 | Bound::Included(&value) => value + 1,
| ^^^^^ use of undeclared type `Bound`
error[E0433]: failed to resolve: use of undeclared type `Bound`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/bit_field-0.10.1/src/lib.rs:362:9
|
362 | Bound::Unbounded => bit_length,
| ^^^^^ use of undeclared type `Bound`
error[E0405]: cannot find trait `RangeBounds` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/bit_field-0.10.1/src/lib.rs:59:20
|
59 | fn get_bits<T: RangeBounds<usize>>(&self, range: T) -> Self;
| ^^^^^^^^^^^ not found in this scope
error[E0463]: can't find crate for `std`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/inline_lazy.rs:9:1
|
9 | extern crate std;
| ^^^^^^^^^^^^^^^^^ can't find crate
|
= note: the `x86_64-apple-ios` target may not be installed
= help: consider downloading the target with `rustup target add x86_64-apple-ios`
error[E0405]: cannot find trait `RangeBounds` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/bit_field-0.10.1/src/lib.rs:108:20
|
108 | fn set_bits<T: RangeBounds<usize>>(&mut self, range: T, value: Self) -> &mut Self;
| ^^^^^^^^^^^ not found in this scope
error[E0405]: cannot find trait `RangeBounds` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/bit_field-0.10.1/src/lib.rs:158:20
|
158 | fn get_bits<U: RangeBounds<usize>>(&self, range: U) -> T;
| ^^^^^^^^^^^ not found in this scope
error[E0405]: cannot find trait `RangeBounds` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/bit_field-0.10.1/src/lib.rs:205:20
|
205 | fn set_bits<U: RangeBounds<usize>>(&mut self, range: U, value: T);
| ^^^^^^^^^^^ not found in this scope
error[E0405]: cannot find trait `RangeBounds` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/bit_field-0.10.1/src/lib.rs:222:28
|
222 | fn get_bits<T: RangeBounds<usize>>(&self, range: T) -> Self {
| ^^^^^^^^^^^ not found in this scope
...
273 | bitfield_numeric_impl! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize }
| ------------------------------------------------------------------------------ in this macro invocation
|
= note: this error originates in the macro `bitfield_numeric_impl` (in Nightly builds, run with -Z macro-backtrace for more info)
error[E0405]: cannot find trait `RangeBounds` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/bit_field-0.10.1/src/lib.rs:250:28
|
250 | fn set_bits<T: RangeBounds<usize>>(&mut self, range: T, value: Self) -> &mut Self {
| ^^^^^^^^^^^ not found in this scope
...
273 | bitfield_numeric_impl! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize }
| ------------------------------------------------------------------------------ in this macro invocation
|
= note: this error originates in the macro `bitfield_numeric_impl` (in Nightly builds, run with -Z macro-backtrace for more info)
error[E0405]: cannot find trait `RangeBounds` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/bit_field-0.10.1/src/lib.rs:289:20
|
289 | fn get_bits<U: RangeBounds<usize>>(&self, range: U) -> T {
| ^^^^^^^^^^^ not found in this scope
error[E0405]: cannot find trait `RangeBounds` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/bit_field-0.10.1/src/lib.rs:324:20
|
324 | fn set_bits<U: RangeBounds<usize>>(&mut self, range: U, value: T) {
| ^^^^^^^^^^^ not found in this scope
error[E0405]: cannot find trait `RangeBounds` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/bit_field-0.10.1/src/lib.rs:353:24
|
353 | fn to_regular_range<T: RangeBounds<usize>>(generic_rage: &T, bit_length: usize) -> Range<usize> {
| ^^^^^^^^^^^ not found in this scope
error[E0412]: cannot find type `Range` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/bit_field-0.10.1/src/lib.rs:353:84
|
353 | fn to_regular_range<T: RangeBounds<usize>>(generic_rage: &T, bit_length: usize) -> Range<usize> {
| ^^^^^ not found in this scope
error: cannot find macro `debug_assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/inline_lazy.rs:40:21
|
40 | debug_assert!(false, "attempted to derefence an uninitialized lazy static. This is a bug");
| ^^^^^^^^^^^^
error[E0433]: failed to resolve: use of undeclared type `Pin`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:131:9
|
131 | Pin::new(&mut **self).poll_flush(cx)
| ^^^ use of undeclared type `Pin`
error: cannot find macro `assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/color_quant-1.1.0/src/lib.rs:186:9
|
186 | assert!(pixel.len() == 4);
| ^^^^^^
error: cannot find macro `assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/color_quant-1.1.0/src/lib.rs:172:9
|
172 | assert!(pixel.len() == 4);
| ^^^^^^
error: cannot find macro `vec` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/color_quant-1.1.0/src/lib.rs:126:23
|
126 | netindex: vec![0; 256],
| ^^^
error: cannot find attribute `derive` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/color_quant-1.1.0/src/lib.rs:92:3
|
92 | #[derive(Clone, Copy)]
| ^^^^^^
error[E0433]: failed to resolve: use of undeclared type `Cell`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/inline_lazy.rs:23:33
|
23 | pub const INIT: Self = Lazy(Cell::new(None), ONCE_INIT);
| ^^^^ use of undeclared type `Cell`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:240:10
|
240 | impl<'s> fmt::Display for Ident<'s> {
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:241:27
|
241 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:241:46
|
241 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
| ^^^ use of undeclared crate or module `fmt`
error: could not compile `encoding_index_tests` due to previous error
error[E0463]: can't find crate for `core`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:99:5
|
99 | use core::borrow::{Borrow, BorrowMut};
| ^^^^ can't find crate
|
= note: the `x86_64-apple-ios` target may not be installed
= help: consider downloading the target with `rustup target add x86_64-apple-ios`
error[E0433]: failed to resolve: use of undeclared type `Pin`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:135:9
|
135 | Pin::new(&mut **self).poll_close(cx)
| ^^^ use of undeclared type `Pin`
error[E0463]: can't find crate for `core`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:100:5
|
100 | use core::cmp;
| ^^^^ can't find crate
|
= note: the `x86_64-apple-ios` target may not be installed
= help: consider downloading the target with `rustup target add x86_64-apple-ios`
error[E0463]: can't find crate for `core`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:101:5
|
101 | use core::fmt;
| ^^^^ can't find crate
|
= note: the `x86_64-apple-ios` target may not be installed
= help: consider downloading the target with `rustup target add x86_64-apple-ios`
error[E0463]: can't find crate for `core`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:102:5
|
102 | use core::hash::{Hash, Hasher};
| ^^^^ can't find crate
|
= note: the `x86_64-apple-ios` target may not be installed
= help: consider downloading the target with `rustup target add x86_64-apple-ios`
error[E0405]: cannot find trait `Sync` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/inline_lazy.rs:19:20
|
19 | pub struct Lazy<T: Sync>(Cell<Option<T>>, Once);
| ^^^^ not found in this scope
error[E0412]: cannot find type `Cell` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/inline_lazy.rs:19:26
|
19 | pub struct Lazy<T: Sync>(Cell<Option<T>>, Once);
| ^^^^ not found in this scope
error[E0412]: cannot find type `Option` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/inline_lazy.rs:19:31
|
19 | pub struct Lazy<T: Sync>(Cell<Option<T>>, Once);
| ^^^^^^ not found in this scope
error[E0412]: cannot find type `Once` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/inline_lazy.rs:19:43
|
19 | pub struct Lazy<T: Sync>(Cell<Option<T>>, Once);
| ^^^^ not found in this scope
error[E0405]: cannot find trait `Sync` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/inline_lazy.rs:21:9
|
21 | impl<T: Sync> Lazy<T> {
| ^^^^ not found in this scope
error[E0433]: failed to resolve: use of undeclared crate or module `iter`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:312:21
|
312 | let chars = iter::from_fn(move || {
| ^^^^ use of undeclared crate or module `iter`
error[E0425]: cannot find value `None` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/inline_lazy.rs:23:43
|
23 | pub const INIT: Self = Lazy(Cell::new(None), ONCE_INIT);
| ^^^^ not found in this scope
error[E0425]: cannot find value `ONCE_INIT` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/inline_lazy.rs:23:50
|
23 | pub const INIT: Self = Lazy(Cell::new(None), ONCE_INIT);
| ^^^^^^^^^ not found in this scope
error[E0405]: cannot find trait `FnOnce` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/inline_lazy.rs:28:12
|
28 | F: FnOnce() -> T,
| ^^^^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Some` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/inline_lazy.rs:31:24
|
31 | self.0.set(Some(f()));
| ^^^^ not found in this scope
error[E0531]: cannot find tuple struct or tuple variant `Some` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/inline_lazy.rs:38:17
|
38 | Some(ref x) => x,
| ^^^^ not found in this scope
error[E0425]: cannot find function `unreachable_unchecked` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/inline_lazy.rs:42:21
|
42 | unreachable_unchecked()
| ^^^^^^^^^^^^^^^^^^^^^ not found in this scope
error[E0405]: cannot find trait `Sync` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/inline_lazy.rs:49:22
|
49 | unsafe impl<T: Sync> Sync for Lazy<T> {}
| ^^^^ not found in this scope
error[E0405]: cannot find trait `Sync` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/inline_lazy.rs:49:16
|
49 | unsafe impl<T: Sync> Sync for Lazy<T> {}
| ^^^^ not found in this scope
error[E0463]: can't find crate for `core`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:103:5
|
103 | use core::hint::unreachable_unchecked;
| ^^^^ can't find crate
|
= note: the `x86_64-apple-ios` target may not be installed
= help: consider downloading the target with `rustup target add x86_64-apple-ios`
error[E0463]: can't find crate for `core`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:104:5
|
104 | use core::iter::{repeat, FromIterator, FusedIterator, IntoIterator};
| ^^^^ can't find crate
|
= note: the `x86_64-apple-ios` target may not be installed
= help: consider downloading the target with `rustup target add x86_64-apple-ios`
Some errors have detailed explanations: E0405, E0412, E0433, E0463.
For more information about an error, try `rustc --explain E0405`.
error[E0463]: can't find crate for `core`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:105:5
|
105 | use core::mem;
| ^^^^ can't find crate
|
= note: the `x86_64-apple-ios` target may not be installed
= help: consider downloading the target with `rustup target add x86_64-apple-ios`
error[E0463]: can't find crate for `core`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:106:5
|
106 | use core::mem::MaybeUninit;
| ^^^^ can't find crate
|
= note: the `x86_64-apple-ios` target may not be installed
= help: consider downloading the target with `rustup target add x86_64-apple-ios`
error[E0463]: can't find crate for `core`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:107:5
|
107 | use core::ops::{self, Range, RangeBounds};
| ^^^^ can't find crate
|
= note: the `x86_64-apple-ios` target may not be installed
= help: consider downloading the target with `rustup target add x86_64-apple-ios`
Some errors have detailed explanations: E0405, E0412, E0425, E0433, E0463, E0531.
error[E0463]: can't find crate for `core`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:108:5
|
108 | use core::ptr::{self, NonNull};
| ^^^^ can't find crate
|
= note: the `x86_64-apple-ios` target may not be installed
= help: consider downloading the target with `rustup target add x86_64-apple-ios`
error[E0433]: failed to resolve: use of undeclared type `Result`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:365:28
|
365 | Some(chars.map(Result::unwrap))
| ^^^^^^ use of undeclared type `Result`
error[E0463]: can't find crate for `core`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:109:5
|
109 | use core::slice::{self, SliceIndex};
| ^^^^ can't find crate
|
= note: the `x86_64-apple-ios` target may not be installed
= help: consider downloading the target with `rustup target add x86_64-apple-ios`
error[E0463]: can't find crate for `core`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:796:13
|
796 | use core::ops::Bound::*;
| ^^^^ can't find crate
|
= note: the `x86_64-apple-ios` target may not be installed
= help: consider downloading the target with `rustup target add x86_64-apple-ios`
error: could not compile `bit_field` due to 31 previous errors
error: cannot find attribute `derive` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:277:3
|
277 | #[derive(Debug)]
| ^^^^^^
error: cannot find macro `write` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:290:9
|
290 | write!(f, "Allocation error: {:?}", self)
| ^^^^^
error: cannot find macro `panic` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:304:54
|
304 | Err(CollectionAllocErr::CapacityOverflow) => panic!("capacity overflow"),
| ^^^^^
error: cannot find macro `cfg` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:235:12
|
235 | if cfg!(not(debug_assertions)) {
| ^^^
...
477 | _ => debug_unreachable!(),
| -------------------- in this macro invocation
|
= note: `cfg` is in scope, but it is an attribute: `#[cfg]`
= note: this error originates in the macro `debug_unreachable` (in Nightly builds, run with -Z macro-backtrace for more info)
error: could not compile `lazy_static` due to 19 previous errors
error: cannot find macro `panic` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:238:13
|
238 | panic!($e);
| ^^^^^
...
477 | _ => debug_unreachable!(),
| -------------------- in this macro invocation
|
= note: this error originates in the macro `debug_unreachable` (in Nightly builds, run with -Z macro-backtrace for more info)
error: cannot find macro `cfg` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:235:12
|
235 | if cfg!(not(debug_assertions)) {
| ^^^
...
484 | _ => debug_unreachable!(),
| -------------------- in this macro invocation
|
= note: `cfg` is in scope, but it is an attribute: `#[cfg]`
= note: this error originates in the macro `debug_unreachable` (in Nightly builds, run with -Z macro-backtrace for more info)
error: cannot find macro `panic` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:238:13
|
238 | panic!($e);
| ^^^^^
...
484 | _ => debug_unreachable!(),
| -------------------- in this macro invocation
|
= note: this error originates in the macro `debug_unreachable` (in Nightly builds, run with -Z macro-backtrace for more info)
error: cannot find macro `cfg` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:235:12
|
235 | if cfg!(not(debug_assertions)) {
| ^^^
...
495 | _ => debug_unreachable!(),
| -------------------- in this macro invocation
|
= note: `cfg` is in scope, but it is an attribute: `#[cfg]`
= note: this error originates in the macro `debug_unreachable` (in Nightly builds, run with -Z macro-backtrace for more info)
error: cannot find macro `panic` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:238:13
|
238 | panic!($e);
| ^^^^^
...
495 | _ => debug_unreachable!(),
| -------------------- in this macro invocation
|
= note: this error originates in the macro `debug_unreachable` (in Nightly builds, run with -Z macro-backtrace for more info)
error: cannot find macro `cfg` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:235:12
|
235 | if cfg!(not(debug_assertions)) {
| ^^^
...
502 | _ => debug_unreachable!(),
| -------------------- in this macro invocation
|
= note: `cfg` is in scope, but it is an attribute: `#[cfg]`
= note: this error originates in the macro `debug_unreachable` (in Nightly builds, run with -Z macro-backtrace for more info)
error: cannot find macro `panic` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:238:13
|
238 | panic!($e);
| ^^^^^
...
502 | _ => debug_unreachable!(),
| -------------------- in this macro invocation
|
= note: this error originates in the macro `debug_unreachable` (in Nightly builds, run with -Z macro-backtrace for more info)
error: cannot find macro `cfg` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:235:12
|
235 | if cfg!(not(debug_assertions)) {
| ^^^
...
509 | _ => debug_unreachable!(),
| -------------------- in this macro invocation
|
= note: `cfg` is in scope, but it is an attribute: `#[cfg]`
= note: this error originates in the macro `debug_unreachable` (in Nightly builds, run with -Z macro-backtrace for more info)
error: cannot find macro `panic` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:238:13
|
238 | panic!($e);
| ^^^^^
...
509 | _ => debug_unreachable!(),
| -------------------- in this macro invocation
|
= note: this error originates in the macro `debug_unreachable` (in Nightly builds, run with -Z macro-backtrace for more info)
error: cannot find macro `assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:561:9
|
561 | assert!(
| ^^^^^^
error[E0412]: cannot find type `Pin` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:68:25
|
68 | fn poll_ready(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>;
| ^^^ not found in this scope
error[E0412]: cannot find type `Context` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:68:50
|
68 | fn poll_ready(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>;
| ^^^^^^^ not found in this scope
error[E0412]: cannot find type `Poll` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:68:66
|
68 | fn poll_ready(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>;
| ^^^^ not found in this scope
error[E0412]: cannot find type `Result` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:68:71
|
68 | fn poll_ready(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>;
| ^^^^^^ not found in this scope
error: cannot find macro `assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:661:9
|
661 | assert!(len <= A::size());
| ^^^^^^
error[E0412]: cannot find type `Pin` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:89:25
|
89 | fn start_send(self: Pin<&mut Self>, item: Item) -> Result<(), Self::Error>;
| ^^^ not found in this scope
error[E0412]: cannot find type `Result` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:89:56
|
89 | fn start_send(self: Pin<&mut Self>, item: Item) -> Result<(), Self::Error>;
| ^^^^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:103:25
|
103 | fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>;
| ^^^ not found in this scope
error[E0412]: cannot find type `Context` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:103:50
|
103 | fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>;
| ^^^^^^^ not found in this scope
error[E0412]: cannot find type `Poll` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:103:66
|
103 | fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>;
| ^^^^ not found in this scope
error[E0412]: cannot find type `Result` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:103:71
|
103 | fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>;
| ^^^^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:116:25
|
116 | fn poll_close(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>;
| ^^^ not found in this scope
error: cannot find macro `assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:810:9
|
810 | assert!(start <= end);
| ^^^^^^
error[E0412]: cannot find type `Context` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:116:50
|
116 | fn poll_close(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>;
| ^^^^^^^ not found in this scope
error[E0412]: cannot find type `Poll` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:116:66
|
116 | fn poll_close(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>;
| ^^^^ not found in this scope
error[E0412]: cannot find type `Result` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:116:71
|
116 | fn poll_close(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>;
| ^^^^^^ not found in this scope
error[E0405]: cannot find trait `Sized` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:119:10
|
119 | impl<S: ?Sized + Sink<Item> + Unpin, Item> Sink<Item> for &mut S {
| ^^^^^ not found in this scope
error[E0405]: cannot find trait `Unpin` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:119:31
|
119 | impl<S: ?Sized + Sink<Item> + Unpin, Item> Sink<Item> for &mut S {
| ^^^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:122:29
|
122 | fn poll_ready(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
| ^^^ not found in this scope
error[E0412]: cannot find type `Context` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:122:54
|
122 | fn poll_ready(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
| ^^^^^^^ not found in this scope
error[E0412]: cannot find type `Poll` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:122:70
|
122 | fn poll_ready(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
| ^^^^ not found in this scope
error: cannot find macro `assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:811:9
|
811 | assert!(end <= len);
| ^^^^^^
error[E0412]: cannot find type `Result` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:122:75
|
122 | fn poll_ready(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
| ^^^^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:126:29
|
126 | fn start_send(mut self: Pin<&mut Self>, item: Item) -> Result<(), Self::Error> {
| ^^^ not found in this scope
error[E0412]: cannot find type `Result` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:126:60
|
126 | fn start_send(mut self: Pin<&mut Self>, item: Item) -> Result<(), Self::Error> {
| ^^^^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:130:29
|
130 | fn poll_flush(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
| ^^^ not found in this scope
error[E0412]: cannot find type `Context` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:130:54
|
130 | fn poll_flush(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
| ^^^^^^^ not found in this scope
error[E0412]: cannot find type `Poll` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:130:70
|
130 | fn poll_flush(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
| ^^^^ not found in this scope
error[E0412]: cannot find type `Result` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:130:75
|
130 | fn poll_flush(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
| ^^^^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:134:29
|
134 | fn poll_close(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
| ^^^ not found in this scope
error: cannot find macro `assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:891:13
|
891 | assert!(new_cap >= len);
| ^^^^^^
error[E0412]: cannot find type `Context` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:134:54
|
134 | fn poll_close(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
| ^^^^^^^ not found in this scope
error[E0412]: cannot find type `Poll` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:134:70
|
134 | fn poll_close(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
| ^^^^ not found in this scope
error[E0412]: cannot find type `Result` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:134:75
|
134 | fn poll_close(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
| ^^^^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:139:30
|
139 | impl<P, Item> Sink<Item> for Pin<P>
| ^^^ not found in this scope
error[E0405]: cannot find trait `DerefMut` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:141:8
|
141 | P: DerefMut + Unpin,
| ^^^^^^^^ not found in this scope
error[E0405]: cannot find trait `Unpin` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:141:19
|
141 | P: DerefMut + Unpin,
| ^^^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:146:25
|
146 | fn poll_ready(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
| ^^^ not found in this scope
error: cannot find macro `debug_assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:902:17
|
902 | debug_assert!(layout.size() > 0);
| ^^^^^^^^^^^^
error[E0412]: cannot find type `Context` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:146:50
|
146 | fn poll_ready(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
| ^^^^^^^ not found in this scope
error[E0412]: cannot find type `Poll` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:146:66
|
146 | fn poll_ready(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
| ^^^^ not found in this scope
error[E0412]: cannot find type `Result` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:146:71
|
146 | fn poll_ready(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
| ^^^^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:150:25
|
150 | fn start_send(self: Pin<&mut Self>, item: Item) -> Result<(), Self::Error> {
| ^^^ not found in this scope
error[E0412]: cannot find type `Result` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:150:56
|
150 | fn start_send(self: Pin<&mut Self>, item: Item) -> Result<(), Self::Error> {
| ^^^^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:154:25
|
154 | fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
| ^^^ not found in this scope
error: cannot find macro `assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:1056:13
|
1056 | assert!(index < len);
| ^^^^^^
error[E0412]: cannot find type `Context` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:154:50
|
154 | fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
| ^^^^^^^ not found in this scope
error[E0412]: cannot find type `Poll` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:154:66
|
154 | fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
| ^^^^ not found in this scope
error[E0412]: cannot find type `Result` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:154:71
|
154 | fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
| ^^^^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:158:25
|
158 | fn poll_close(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
| ^^^ not found in this scope
error[E0412]: cannot find type `Context` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:158:50
|
158 | fn poll_close(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
| ^^^^^^^ not found in this scope
error[E0412]: cannot find type `Poll` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:158:66
|
158 | fn poll_close(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
| ^^^^ not found in this scope
error[E0412]: cannot find type `Result` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.19/src/lib.rs:158:71
|
158 | fn poll_close(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
| ^^^^^^ not found in this scope
error: cannot find macro `assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:1074:13
|
1074 | assert!(index <= len);
| ^^^^^^
error: cannot find macro `assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:1091:9
|
1091 | assert!(lower_size_bound <= core::isize::MAX as usize); // Ensure offset is indexable
| ^^^^^^
error: cannot find macro `assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:1092:9
|
1092 | assert!(index + lower_size_bound >= index); // Protect against overflow
| ^^^^^^
error: cannot find macro `assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:1096:9
|
1096 | assert!(index <= old_len);
| ^^^^^^
error: cannot find macro `assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:1383:9
|
1383 | assert!(capacity > Self::inline_capacity());
| ^^^^^^
error: cannot find macro `assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:1448:9
|
1448 | assert!(index <= len);
| ^^^^^^
error: cannot find macro `vec` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:1498:13
|
1498 | vec![elem; n].into()
| ^^^
error: cannot find attribute `derive` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/adler32-1.2.0/src/lib.rs:86:3
|
86 | #[derive(Clone)]
| ^^^^^^
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:576:25
|
576 | out: Option<&'a mut fmt::Formatter<'b>>,
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:644:33
|
644 | F: FnOnce(&mut Self) -> fmt::Result,
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:656:33
|
656 | F: FnOnce(&mut Self) -> fmt::Result,
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:654:45
|
654 | fn print_backref<F>(&mut self, f: F) -> fmt::Result
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared type `Vec`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:272:9
|
272 | Vec::extend_from_slice(self, other)
| ^^^ use of undeclared type `Vec`
error: could not compile `futures-sink` due to 56 previous errors
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:288:6
|
288 | impl fmt::Display for CollectionAllocErr {
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:289:27
|
289 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:289:50
|
289 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `mem`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:664:27
|
664 | let orig_parser = mem::replace(&mut self.parser, Ok(backref_parser));
| ^^^ use of undeclared crate or module `mem`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:678:33
|
678 | fn print(&mut self, x: impl fmt::Display) -> fmt::Result {
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:678:50
|
678 | fn print(&mut self, x: impl fmt::Display) -> fmt::Result {
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:680:13
|
680 | fmt::Display::fmt(&x, out)?;
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:692:10
|
692 | ) -> fmt::Result {
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:717:57
|
717 | fn print_lifetime_from_index(&mut self, lt: u64) -> fmt::Result {
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:748:33
|
748 | F: FnOnce(&mut Self) -> fmt::Result,
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:746:41
|
746 | fn in_binder<F>(&mut self, f: F) -> fmt::Result
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:782:29
|
782 | F: Fn(&mut Self) -> fmt::Result,
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:780:71
|
780 | fn print_sep_list<F>(&mut self, f: F, sep: &str) -> Result<usize, fmt::Error>
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:795:49
|
795 | fn print_path(&mut self, in_value: bool) -> fmt::Result {
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `mem`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:312:16
|
312 | let size = mem::size_of::<T>()
| ^^^ use of undeclared crate or module `mem`
error[E0463]: can't find crate for `core`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/slice.rs:13:5
|
13 | use core::slice;
| ^^^^ can't find crate
|
= note: the `x86_64-apple-ios` target may not be installed
= help: consider downloading the target with `rustup target add x86_64-apple-ios`
error[E0463]: can't find crate for `core`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/bfloat.rs:3:5
|
3 | use core::{
| ^^^^ can't find crate
|
= note: the `x86_64-apple-ios` target may not be installed
= help: consider downloading the target with `rustup target add x86_64-apple-ios`
error[E0433]: failed to resolve: use of undeclared crate or module `mem`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:315:17
|
315 | let align = mem::align_of::<T>();
| ^^^ use of undeclared crate or module `mem`
error[E0433]: failed to resolve: use of undeclared type `Layout`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:316:5
|
316 | Layout::from_size_align(size, align).map_err(|_| CollectionAllocErr::CapacityOverflow)
| ^^^^^^ use of undeclared type `Layout`
error[E0433]: failed to resolve: use of undeclared crate or module `slice`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:333:11
|
333 | iter: slice::Iter<'a, T::Item>,
| ^^^^^ use of undeclared crate or module `slice`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:337:25
|
337 | impl<'a, T: 'a + Array> fmt::Debug for Drain<'a, T>
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:339:14
|
339 | T::Item: fmt::Debug,
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:341:27
|
341 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:341:50
|
341 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:808:25
|
808 | fmt::LowerHex::fmt(&dis, out)?;
| ^^^ use of undeclared crate or module `fmt`
error[E0463]: can't find crate for `core`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/binary16.rs:3:5
|
3 | use core::{
| ^^^^ can't find crate
|
= note: the `x86_64-apple-ios` target may not be installed
= help: consider downloading the target with `rustup target add x86_64-apple-ios`
error[E0433]: failed to resolve: use of undeclared crate or module `ptr`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:356:39
|
356 | .map(|reference| unsafe { ptr::read(reference) })
| ^^^ use of undeclared crate or module `ptr`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:891:40
|
891 | fn print_generic_arg(&mut self) -> fmt::Result {
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `ptr`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:370:39
|
370 | .map(|reference| unsafe { ptr::read(reference) })
| ^^^ use of undeclared crate or module `ptr`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:902:33
|
902 | fn print_type(&mut self) -> fmt::Result {
| ^^^ use of undeclared crate or module `fmt`
error: cannot find attribute `derive` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/bfloat.rs:33:3
|
33 | #[derive(Clone, Copy, Default)]
| ^^^^^^
error: cannot find macro `assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/bfloat.rs:473:9
|
473 | assert!(min <= max);
| ^^^^^^
error: cannot find macro `write` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/bfloat.rs:706:9
|
706 | write!(f, "{:?}", self.to_f32())
| ^^^^^
error: cannot find macro `write` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/bfloat.rs:712:9
|
712 | write!(f, "{}", self.to_f32())
| ^^^^^
error: cannot find macro `write` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/bfloat.rs:718:9
|
718 | write!(f, "{:e}", self.to_f32())
| ^^^^^
error: cannot find macro `write` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/bfloat.rs:724:9
|
724 | write!(f, "{:E}", self.to_f32())
| ^^^^^
error: cannot find macro `write` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/bfloat.rs:730:9
|
730 | write!(f, "{:b}", self.0)
| ^^^^^
error: cannot find macro `write` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/bfloat.rs:736:9
|
736 | write!(f, "{:o}", self.0)
| ^^^^^
error: cannot find macro `write` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/bfloat.rs:742:9
|
742 | write!(f, "{:x}", self.0)
| ^^^^^
error: cannot find macro `write` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/bfloat.rs:748:9
|
748 | write!(f, "{:X}", self.0)
| ^^^^^
error: cannot find macro `debug_assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/binary16/convert.rs:357:5
|
357 | debug_assert!(v.len() >= 4);
| ^^^^^^^^^^^^
error: cannot find macro `debug_assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/binary16/convert.rs:369:5
|
369 | debug_assert!(v.len() >= 4);
| ^^^^^^^^^^^^
error: cannot find macro `debug_assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/binary16/convert.rs:381:5
|
381 | debug_assert!(v.len() >= 4);
| ^^^^^^^^^^^^
error: cannot find macro `debug_assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/binary16/convert.rs:393:5
|
393 | debug_assert!(v.len() >= 4);
| ^^^^^^^^^^^^
error[E0433]: failed to resolve: use of undeclared crate or module `ptr`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:397:21
|
397 | ptr::copy(src, dst, self.tail_len);
| ^^^ use of undeclared crate or module `ptr`
error: cannot find attribute `derive` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/binary16.rs:31:3
|
31 | #[derive(Clone, Copy, Default)]
| ^^^^^^
error: cannot find macro `assert` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/binary16.rs:567:9
|
567 | assert!(min <= max);
| ^^^^^^
error: cannot find macro `write` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/binary16.rs:800:9
|
800 | write!(f, "{:?}", self.to_f32())
| ^^^^^
error: cannot find macro `write` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/binary16.rs:806:9
|
806 | write!(f, "{}", self.to_f32())
| ^^^^^
error: cannot find macro `write` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/binary16.rs:812:9
|
812 | write!(f, "{:e}", self.to_f32())
| ^^^^^
error: cannot find macro `write` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/binary16.rs:818:9
|
818 | write!(f, "{:E}", self.to_f32())
| ^^^^^
error: cannot find macro `write` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/binary16.rs:824:9
|
824 | write!(f, "{:b}", self.0)
| ^^^^^
error: cannot find macro `write` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/binary16.rs:830:9
|
830 | write!(f, "{:o}", self.0)
| ^^^^^
error: cannot find macro `write` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/binary16.rs:836:9
|
836 | write!(f, "{:x}", self.0)
| ^^^^^
error: cannot find macro `write` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/binary16.rs:842:9
|
842 | write!(f, "{:X}", self.0)
| ^^^^^
error: cannot find macro `assert_eq` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/slice.rs:316:9
|
316 | assert_eq!(
| ^^^^^^^^^
error: cannot find macro `assert_eq` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/slice.rs:343:9
|
343 | assert_eq!(
| ^^^^^^^^^
error: cannot find macro `assert_eq` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/slice.rs:370:9
|
370 | assert_eq!(
| ^^^^^^^^^
error: cannot find macro `assert_eq` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/slice.rs:397:9
|
397 | assert_eq!(
| ^^^^^^^^^
error: cannot find macro `assert_eq` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/slice.rs:468:9
|
468 | assert_eq!(
| ^^^^^^^^^
error: cannot find macro `assert_eq` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/slice.rs:481:9
|
481 | assert_eq!(
| ^^^^^^^^^
error: cannot find macro `assert_eq` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/slice.rs:494:9
|
494 | assert_eq!(
| ^^^^^^^^^
error: cannot find macro `assert_eq` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/slice.rs:507:9
|
507 | assert_eq!(
| ^^^^^^^^^
error[E0433]: failed to resolve: use of undeclared type `FpCategory`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/bfloat.rs:305:23
|
305 | (0, 0) => FpCategory::Zero,
| ^^^^^^^^^^ use of undeclared type `FpCategory`
error[E0433]: failed to resolve: use of undeclared type `FpCategory`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/bfloat.rs:306:23
|
306 | (0, _) => FpCategory::Subnormal,
| ^^^^^^^^^^ use of undeclared type `FpCategory`
error[E0433]: failed to resolve: use of undeclared type `FpCategory`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/bfloat.rs:307:31
|
307 | (0x7F80u16, 0) => FpCategory::Infinite,
| ^^^^^^^^^^ use of undeclared type `FpCategory`
error[E0433]: failed to resolve: use of undeclared type `FpCategory`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/bfloat.rs:308:31
|
308 | (0x7F80u16, _) => FpCategory::Nan,
| ^^^^^^^^^^ use of undeclared type `FpCategory`
error[E0433]: failed to resolve: use of undeclared type `FpCategory`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/bfloat.rs:309:18
|
309 | _ => FpCategory::Normal,
| ^^^^^^^^^^ use of undeclared type `FpCategory`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:1037:66
|
1037 | fn print_path_maybe_open_generics(&mut self) -> Result<bool, fmt::Error> {
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared type `MaybeUninit`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:567:45
|
567 | data: SmallVecData::from_inline(MaybeUninit::uninit()),
| ^^^^^^^^^^^ use of undeclared type `MaybeUninit`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:1058:38
|
1058 | fn print_dyn_trait(&mut self) -> fmt::Result {
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared type `MaybeUninit`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:607:63
|
607 | let mut data = SmallVecData::<A>::from_inline(MaybeUninit::uninit());
| ^^^^^^^^^^^ use of undeclared type `MaybeUninit`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:1082:50
|
1082 | fn print_const(&mut self, in_value: bool) -> fmt::Result {
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `ptr`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:610:17
|
610 | ptr::copy_nonoverlapping(vec.as_ptr(), data.inline_mut(), len);
| ^^^ use of undeclared crate or module `ptr`
error[E0433]: failed to resolve: use of undeclared type `Ordering`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/bfloat.rs:619:30
|
619 | Some(Ordering::Equal)
| ^^^^^^^^ use of undeclared type `Ordering`
error[E0433]: failed to resolve: use of undeclared type `Ordering`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/bfloat.rs:621:30
|
621 | Some(Ordering::Greater)
| ^^^^^^^^ use of undeclared type `Ordering`
error[E0433]: failed to resolve: use of undeclared crate or module `mem`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:619:13
|
619 | mem::forget(vec);
| ^^^ use of undeclared crate or module `mem`
error[E0433]: failed to resolve: use of undeclared type `Ordering`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/bfloat.rs:626:30
|
626 | Some(Ordering::Equal)
| ^^^^^^^^ use of undeclared type `Ordering`
error[E0433]: failed to resolve: use of undeclared type `MaybeUninit`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:643:45
|
643 | data: SmallVecData::from_inline(MaybeUninit::new(buf)),
| ^^^^^^^^^^^ use of undeclared type `MaybeUninit`
error[E0433]: failed to resolve: use of undeclared type `Ordering`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/bfloat.rs:628:30
|
628 | Some(Ordering::Less)
| ^^^^^^^^ use of undeclared type `Ordering`
error[E0433]: failed to resolve: use of undeclared type `MaybeUninit`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:662:55
|
662 | unsafe { SmallVec::from_buf_and_len_unchecked(MaybeUninit::new(buf), len) }
| ^^^^^^^^^^^ use of undeclared type `MaybeUninit`
error[E0433]: failed to resolve: use of undeclared crate or module `mem`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:701:12
|
701 | if mem::size_of::<A::Item>() > 0 {
| ^^^ use of undeclared crate or module `mem`
error[E0463]: can't find crate for `core`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:714:13
|
714 | core::usize::MAX
| ^^^^ can't find crate
|
= note: the `x86_64-apple-ios` target may not be installed
= help: consider downloading the target with `rustup target add x86_64-apple-ios`
error[E0433]: failed to resolve: use of undeclared crate or module `iter`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:1127:70
|
1127 | Some(c) => self.print_quoted_escaped_chars('\'', iter::once(c))?,
| ^^^^ use of undeclared crate or module `iter`
error[E0433]: failed to resolve: use of undeclared crate or module `slice`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:816:31
|
816 | let range_slice = slice::from_raw_parts_mut(self.as_mut_ptr().add(start), end - start);
| ^^^^^ use of undeclared crate or module `slice`
error[E0433]: failed to resolve: use of undeclared type `NonNull`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:822:22
|
822 | vec: NonNull::from(self),
| ^^^^^^^ use of undeclared type `NonNull`
error[E0433]: failed to resolve: use of undeclared crate or module `ptr`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:838:13
|
838 | ptr::write(ptr.add(*len), value);
| ^^^ use of undeclared crate or module `ptr`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:1211:51
|
1211 | fn print_const_uint(&mut self, ty_tag: u8) -> fmt::Result {
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:1234:46
|
1234 | fn print_const_str_literal(&mut self) -> fmt::Result {
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `ptr`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:853:18
|
853 | Some(ptr::read(ptr.add(last_index)))
| ^^^ use of undeclared crate or module `ptr`
error[E0433]: failed to resolve: use of undeclared type `MaybeUninit`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:896:55
|
896 | self.data = SmallVecData::from_inline(MaybeUninit::uninit());
| ^^^^^^^^^^^ use of undeclared type `MaybeUninit`
error[E0405]: cannot find trait `AddAssign` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/adler-1.0.2/src/algo.rs:124:6
|
124 | impl AddAssign<Self> for U32X4 {
| ^^^^^^^^^ not found in this scope
error[E0405]: cannot find trait `RemAssign` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/adler-1.0.2/src/algo.rs:132:6
|
132 | impl RemAssign<u32> for U32X4 {
| ^^^^^^^^^ not found in this scope
error[E0405]: cannot find trait `MulAssign` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/adler-1.0.2/src/algo.rs:140:6
|
140 | impl MulAssign<u32> for U32X4 {
| ^^^^^^^^^ not found in this scope
error[E0405]: cannot find trait `Default` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/adler-1.0.2/src/lib.rs:147:6
|
147 | impl Default for Adler32 {
| ^^^^^^^ not found in this scope
error[E0433]: failed to resolve: use of undeclared crate or module `ptr`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:897:17
|
897 | ptr::copy_nonoverlapping(ptr, self.data.inline_mut(), len);
| ^^^ use of undeclared crate or module `ptr`
error[E0405]: cannot find trait `Hasher` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/adler-1.0.2/src/lib.rs:154:6
|
154 | impl Hasher for Adler32 {
| ^^^^^^ not found in this scope
error[E0433]: failed to resolve: use of undeclared type `NonNull`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:905:33
|
905 | new_alloc = NonNull::new(alloc::alloc::alloc(layout))
| ^^^^^^^ use of undeclared type `NonNull`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/lib.rs:210:10
|
210 | impl<'a> fmt::Display for DemangleStyle<'a> {
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `ptr`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:909:21
|
909 | ptr::copy_nonoverlapping(ptr, new_alloc, len);
| ^^^ use of undeclared crate or module `ptr`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/lib.rs:211:27
|
211 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/lib.rs:211:46
|
211 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/lib.rs:213:45
|
213 | DemangleStyle::Legacy(ref d) => fmt::Display::fmt(d, f),
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/lib.rs:214:41
|
214 | DemangleStyle::V0(ref d) => fmt::Display::fmt(d, f),
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/lib.rs:230:21
|
230 | impl<F: fmt::Write> fmt::Write for SizeLimitedFmtAdapter<F> {
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/lib.rs:230:9
|
230 | impl<F: fmt::Write> fmt::Write for SizeLimitedFmtAdapter<F> {
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/lib.rs:231:41
|
231 | fn write_str(&mut self, s: &str) -> fmt::Result {
| ^^^ use of undeclared crate or module `fmt`
Some errors have detailed explanations: E0405, E0463.
error[E0433]: failed to resolve: use of undeclared type `NonNull`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:916:33
|
916 | new_alloc = NonNull::new(new_ptr)
| ^^^^^^^ use of undeclared type `NonNull`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/lib.rs:238:44
|
238 | Err(SizeLimitExhausted) => Err(fmt::Error),
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/lib.rs:243:10
|
243 | impl<'a> fmt::Display for Demangle<'a> {
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/lib.rs:244:27
|
244 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/lib.rs:244:46
|
244 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/lib.rs:278:10
|
278 | impl<'a> fmt::Debug for Demangle<'a> {
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/lib.rs:279:27
|
279 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/lib.rs:279:46
|
279 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
| ^^^ use of undeclared crate or module `fmt`
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/lib.rs:280:9
|
280 | fmt::Display::fmt(self, f)
| ^^^ use of undeclared crate or module `fmt`
error[E0412]: cannot find type `Result` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/legacy.rs:49:29
|
49 | pub fn demangle(s: &str) -> Result<(Demangle, &str), ()> {
| ^^^^^^ not found in this scope
error[E0433]: failed to resolve: use of undeclared type `Add`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/bfloat.rs:769:28
|
769 | type Output = <bf16 as Add<bf16>>::Output;
| ^^^ use of undeclared type `Add`
error[E0425]: cannot find function, tuple struct or tuple variant `Err` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/legacy.rs:63:16
|
63 | return Err(());
| ^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Err` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/legacy.rs:68:16
|
68 | return Err(());
| ^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Err` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/legacy.rs:77:20
|
77 | return Err(());
| ^^^ not found in this scope
error[E0531]: cannot find tuple struct or tuple variant `Some` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/legacy.rs:80:19
|
80 | while let Some(d) = c.to_digit(10) {
| ^^^^ not found in this scope
error[E0433]: failed to resolve: use of undeclared type `Add`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/bfloat.rs:778:28
|
778 | type Output = <bf16 as Add<bf16>>::Output;
| ^^^ use of undeclared type `Add`
error[E0425]: cannot find function, tuple struct or tuple variant `Ok` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/legacy.rs:97:5
|
97 | Ok((Demangle { inner, elements }, chars.as_str()))
| ^^ not found in this scope
error[E0531]: cannot find tuple struct or tuple variant `Some` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/legacy.rs:130:28
|
130 | if let Some('.') = rest[1..].chars().next() {
| ^^^^ not found in this scope
error[E0531]: cannot find tuple struct or tuple variant `Some` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/legacy.rs:138:57
|
138 | let (escape, after_escape) = if let Some(end) = rest[1..].find('$') {
| ^^^^ not found in this scope
error[E0531]: cannot find tuple struct or tuple variant `Some` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/legacy.rs:165:47
|
165 | ... if let (true, Some(c)) = (all_lower_hex, c) {
| ^^^^ not found in this scope
error[E0531]: cannot find tuple struct or tuple variant `Some` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/legacy.rs:179:31
|
179 | } else if let Some(i) = rest.find(|c| c == '$' || c == '.') {
| ^^^^ not found in this scope
error[E0433]: failed to resolve: use of undeclared type `Add`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/bfloat.rs:787:28
|
787 | type Output = <bf16 as Add<bf16>>::Output;
| ^^^ use of undeclared type `Add`
error: could not compile `adler` due to 10 previous errors
error[E0425]: cannot find function, tuple struct or tuple variant `Ok` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/legacy.rs:189:9
|
189 | Ok(())
| ^^ not found in this scope
error[E0412]: cannot find type `Result` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:37:29
|
37 | pub fn demangle(s: &str) -> Result<(Demangle, &str), ParseError> {
| ^^^^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Err` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:52:16
|
52 | return Err(ParseError::Invalid);
| ^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Err` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:58:21
|
58 | _ => return Err(ParseError::Invalid),
| ^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Err` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:63:16
|
63 | return Err(ParseError::Invalid);
| ^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Ok` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:69:21
|
69 | parser: Ok(parser),
| ^^ not found in this scope
error[E0425]: cannot find value `None` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:70:18
|
70 | out: None,
| ^^^^ not found in this scope
error[E0531]: cannot find tuple struct or tuple variant `Some` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:86:12
|
86 | if let Some(&(b'A'..=b'Z')) = parser.sym.as_bytes().get(parser.next) {
| ^^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Ok` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:90:5
|
90 | Ok((Demangle { inner }, &parser.sym[parser.next..]))
| ^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Ok` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:96:21
|
96 | parser: Ok(Parser {
| ^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Some` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:101:18
|
101 | out: Some(f),
| ^^^^ not found in this scope
error[E0405]: cannot find trait `FnOnce` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:121:37
|
121 | fn try_small_punycode_decode<F: FnOnce(&[char]) -> R, R>(&self, f: F) -> Option<R> {
| ^^^^^^ not found in this scope
error[E0412]: cannot find type `Option` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:121:78
|
121 | fn try_small_punycode_decode<F: FnOnce(&[char]) -> R, R>(&self, f: F) -> Option<R> {
| ^^^^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Ok` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:140:13
|
140 | Ok(())
| ^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Some` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:143:13
|
143 | Some(f(&out[..out_len]))
| ^^^^ not found in this scope
error[E0425]: cannot find value `None` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:145:13
|
145 | None
| ^^^^ not found in this scope
error[E0405]: cannot find trait `FnMut` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:152:27
|
152 | fn punycode_decode<F: FnMut(usize, char) -> Result<(), ()>>(
| ^^^^^ not found in this scope
error[E0433]: failed to resolve: use of undeclared type `MaybeUninit`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:987:55
|
987 | self.data = SmallVecData::from_inline(MaybeUninit::uninit());
| ^^^^^^^^^^^ use of undeclared type `MaybeUninit`
error[E0412]: cannot find type `Result` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:152:49
|
152 | fn punycode_decode<F: FnMut(usize, char) -> Result<(), ()>>(
| ^^^^^^ not found in this scope
error[E0412]: cannot find type `Result` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:155:10
|
155 | ) -> Result<(), ()> {
| ^^^^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Err` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:158:20
|
158 | return Err(());
| ^^^ not found in this scope
error[E0425]: cannot find function `min` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:188:25
|
188 | let t = min(max(k.saturating_sub(bias), t_min), t_max);
| ^^^ not found in this scope
error[E0425]: cannot find function `max` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:188:29
|
188 | let t = min(max(k.saturating_sub(bias), t_min), t_max);
| ^^^ not found in this scope
error[E0531]: cannot find tuple struct or tuple variant `Some` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:191:21
|
191 | Some(d @ b'a'..=b'z') => d - b'a',
| ^^^^ not found in this scope
error[E0531]: cannot find tuple struct or tuple variant `Some` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:192:21
|
192 | Some(d @ b'0'..=b'9') => 26 + (d - b'0'),
| ^^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Err` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:193:33
|
193 | _ => return Err(()),
| ^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Err` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:213:24
|
213 | return Err(());
| ^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Ok` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:222:24
|
222 | return Ok(());
| ^^ help: a local variable with a similar name exists: `k`
error[E0425]: cannot find function, tuple struct or tuple variant `Ok` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:246:13
|
246 | Ok(())
| ^^ not found in this scope
error[E0412]: cannot find type `Option` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:277:33
|
277 | fn try_parse_uint(&self) -> Option<u64> {
| ^^^^^^ not found in this scope
error[E0425]: cannot find value `None` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:281:20
|
281 | return None;
| ^^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Some` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:288:9
|
288 | Some(v)
| ^^^^ not found in this scope
error[E0412]: cannot find type `Option` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:293:38
|
293 | fn try_parse_str_chars(&self) -> Option<impl Iterator<Item = char> + 's> {
| ^^^^^^ not found in this scope
error[E0405]: cannot find trait `Iterator` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:293:50
|
293 | fn try_parse_str_chars(&self) -> Option<impl Iterator<Item = char> + 's> {
| ^^^^^^^^ not found in this scope
error[E0425]: cannot find value `None` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:295:20
|
295 | return None;
| ^^^^ not found in this scope
error[E0412]: cannot find type `Result` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:315:46
|
315 | bytes.next().map(|first_byte| -> Result<char, ()> {
| ^^^^^^ not found in this scope
error[E0412]: cannot find type `Result` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:321:58
|
321 | fn utf8_len_from_first_byte(byte: u8) -> Result<usize, Utf8FirstByteError> {
| ^^^^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Ok` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:323:40
|
323 | 0x00..=0x7f => Ok(1),
| ^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Err` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:324:40
|
324 | 0x80..=0xbf => Err(Utf8FirstByteError::ContinuationByte),
| ^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Ok` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:325:40
|
325 | 0xc0..=0xdf => Ok(2),
| ^^ not found in this scope
error[E0433]: failed to resolve: use of undeclared crate or module `ptr`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:988:17
|
988 | ptr::copy_nonoverlapping(ptr, self.data.inline_mut(), len);
| ^^^ use of undeclared crate or module `ptr`
error[E0425]: cannot find function, tuple struct or tuple variant `Ok` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:326:40
|
326 | 0xe0..=0xef => Ok(3),
| ^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Ok` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:327:40
|
327 | 0xf0..=0xf7 => Ok(4),
| ^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Err` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:328:40
|
328 | 0xf8..=0xff => Err(Utf8FirstByteError::TooLong),
| ^^^ not found in this scope
error[E0531]: cannot find tuple struct or tuple variant `Some` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:347:22
|
347 | (Some(c), None) => Ok(c),
| ^^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Ok` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:347:40
|
347 | (Some(c), None) => Ok(c),
| ^^ not found in this scope
error[E0425]: cannot find value `None` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:363:13
|
363 | None
| ^^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Some` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:365:13
|
365 | Some(chars.map(Result::unwrap))
| ^^^^ not found in this scope
error[E0412]: cannot find type `Option` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:370:27
|
370 | fn basic_type(tag: u8) -> Option<&'static str> {
| ^^^^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Some` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:371:5
|
371 | Some(match tag {
| ^^^^ not found in this scope
error[E0433]: failed to resolve: use of undeclared type `Sub`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/bfloat.rs:818:28
|
818 | type Output = <bf16 as Sub<bf16>>::Output;
| ^^^ use of undeclared type `Sub`
error[E0425]: cannot find value `None` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:394:21
|
394 | _ => return None,
| ^^^^ not found in this scope
error[E0412]: cannot find type `Result` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:405:33
|
405 | fn push_depth(&mut self) -> Result<(), ParseError> {
| ^^^^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Err` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:408:13
|
408 | Err(ParseError::RecursedTooDeep)
| ^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Ok` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:410:13
|
410 | Ok(())
| ^^ not found in this scope
error[E0412]: cannot find type `Option` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:418:23
|
418 | fn peek(&self) -> Option<u8> {
| ^^^^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Some` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:423:27
|
423 | if self.peek() == Some(b) {
| ^^^^ not found in this scope
error[E0412]: cannot find type `Result` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:431:27
|
431 | fn next(&mut self) -> Result<u8, ParseError> {
| ^^^^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Ok` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:434:9
|
434 | Ok(b)
| ^^ not found in this scope
error[E0412]: cannot find type `Result` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:437:34
|
437 | fn hex_nibbles(&mut self) -> Result<HexNibbles<'s>, ParseError> {
| ^^^^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Err` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:443:29
|
443 | _ => return Err(ParseError::Invalid),
| ^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Ok` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:446:9
|
446 | Ok(HexNibbles {
| ^^ not found in this scope
error[E0412]: cannot find type `Result` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:451:31
|
451 | fn digit_10(&mut self) -> Result<u8, ParseError> {
| ^^^^^^ not found in this scope
error[E0531]: cannot find tuple struct or tuple variant `Some` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:453:13
|
453 | Some(d @ b'0'..=b'9') => d - b'0',
| ^^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Err` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:454:25
|
454 | _ => return Err(ParseError::Invalid),
| ^^^ not found in this scope
error[E0433]: failed to resolve: use of undeclared crate or module `ptr`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.7.0/src/lib.rs:1010:17
|
1010 | ptr::drop_in_place(ptr.add(last_index));
| ^^^ use of undeclared crate or module `ptr`
error[E0425]: cannot find function, tuple struct or tuple variant `Ok` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:457:9
|
457 | Ok(d)
| ^^ not found in this scope
error[E0412]: cannot find type `Result` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:460:31
|
460 | fn digit_62(&mut self) -> Result<u8, ParseError> {
| ^^^^^^ not found in this scope
error[E0433]: failed to resolve: use of undeclared type `Sub`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/bfloat.rs:827:28
|
827 | type Output = <bf16 as Sub<bf16>>::Output;
| ^^^ use of undeclared type `Sub`
error[E0531]: cannot find tuple struct or tuple variant `Some` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:462:13
|
462 | Some(d @ b'0'..=b'9') => d - b'0',
| ^^^^ not found in this scope
error[E0531]: cannot find tuple struct or tuple variant `Some` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:463:13
|
463 | Some(d @ b'a'..=b'z') => 10 + (d - b'a'),
| ^^^^ not found in this scope
error[E0531]: cannot find tuple struct or tuple variant `Some` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:464:13
|
464 | Some(d @ b'A'..=b'Z') => 10 + 26 + (d - b'A'),
| ^^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Err` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:465:25
|
465 | _ => return Err(ParseError::Invalid),
| ^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Ok` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:468:9
|
468 | Ok(d)
| ^^ not found in this scope
error[E0412]: cannot find type `Result` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:471:33
|
471 | fn integer_62(&mut self) -> Result<u64, ParseError> {
| ^^^^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Ok` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:473:20
|
473 | return Ok(0);
| ^^ not found in this scope
error[E0412]: cannot find type `Result` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:485:46
|
485 | fn opt_integer_62(&mut self, tag: u8) -> Result<u64, ParseError> {
| ^^^^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Ok` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:487:20
|
487 | return Ok(0);
| ^^ not found in this scope
error[E0412]: cannot find type `Result` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:492:36
|
492 | fn disambiguator(&mut self) -> Result<u64, ParseError> {
| ^^^^^^ not found in this scope
error[E0412]: cannot find type `Result` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:496:32
|
496 | fn namespace(&mut self) -> Result<Option<char>, ParseError> {
| ^^^^^^ not found in this scope
error[E0412]: cannot find type `Option` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:496:39
|
496 | fn namespace(&mut self) -> Result<Option<char>, ParseError> {
| ^^^^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Ok` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:499:33
|
499 | ns @ b'A'..=b'Z' => Ok(Some(ns as char)),
| ^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Some` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:499:36
|
499 | ns @ b'A'..=b'Z' => Ok(Some(ns as char)),
| ^^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Ok` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:502:28
|
502 | b'a'..=b'z' => Ok(None),
| ^^ not found in this scope
error[E0425]: cannot find value `None` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:502:31
|
502 | b'a'..=b'z' => Ok(None),
| ^^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Err` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:504:18
|
504 | _ => Err(ParseError::Invalid),
| ^^^ not found in this scope
error[E0433]: failed to resolve: use of undeclared type `Sub`
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/half-1.8.2/src/bfloat.rs:836:28
|
836 | type Output = <bf16 as Sub<bf16>>::Output;
| ^^^ use of undeclared type `Sub`
error[E0412]: cannot find type `Result` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:508:30
|
508 | fn backref(&mut self) -> Result<Parser<'s>, ParseError> {
| ^^^^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Err` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:512:20
|
512 | return Err(ParseError::Invalid);
| ^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Ok` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:520:9
|
520 | Ok(new_parser)
| ^^ not found in this scope
error[E0412]: cannot find type `Result` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:523:28
|
523 | fn ident(&mut self) -> Result<Ident<'s>, ParseError> {
| ^^^^^^ not found in this scope
error[E0531]: cannot find tuple struct or tuple variant `Ok` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:527:23
|
527 | while let Ok(d) = self.digit_10() {
| ^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Err` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:539:20
|
539 | return Err(ParseError::Invalid);
| ^^^ not found in this scope
error[E0531]: cannot find tuple struct or tuple variant `Some` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:546:17
|
546 | Some(i) => Ident {
| ^^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Err` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:556:24
|
556 | return Err(ParseError::Invalid);
| ^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Ok` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:558:13
|
558 | Ok(ident)
| ^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Ok` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:560:13
|
560 | Ok(Ident {
| ^^ not found in this scope
error[E0412]: cannot find type `Result` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:573:13
|
573 | parser: Result<Parser<'s>, ParseError>,
| ^^^^^^ not found in this scope
error[E0412]: cannot find type `Option` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:576:10
|
576 | out: Option<&'a mut fmt::Formatter<'b>>,
| ^^^^^^ not found in this scope
error[E0425]: cannot find function, tuple struct or tuple variant `Ok` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:636:51
|
636 | self.parser.as_mut().map(|p| p.eat(b)) == Ok(true)
| ^^ not found in this scope
error[E0405]: cannot find trait `FnOnce` in this scope
--> /Users/ozan/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/v0.rs:644:12
|
644 | F: FnOnce(&mut Self) -> fmt::Result,
| ^^^^^^ not found in this scope