Closed
Description
I updated dependencies without the Cargo.lock committed and how I can't build with rustc stable or nightly with any of these versions:
# rustfmt-nightly = "*"
# rustfmt-nightly = "=1.4.11"
# rustfmt_lib = "=2.0.0-rc.1"
rustfmt_lib = { git = "https://github.com/rust-lang/rustfmt" }
I keep getting this error:
error[E0412]: cannot find type `MmapSerializationSink` in crate `measureme`
--> /Users/cameron/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-ap-rustc_data_structures-654.0.0/profiling.rs:103:37
|
103 | type SerializationSink = measureme::MmapSerializationSink;
| ^^^^^^^^^^^^^^^^^^^^^ help: a trait with a similar name exists: `SerializationSink`
|
::: /Users/cameron/.cargo/registry/src/github.com-1ecc6299db9ec823/measureme-0.7.1/src/serialization.rs:14:1
|
14 | pub trait SerializationSink: Sized + Send + Sync + 'static {
| ---------------------------------------------------------- similarly named trait `SerializationSink` defined here
error[E0425]: cannot find function `get_resident` in this scope
--> /Users/cameron/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-ap-rustc_data_structures-654.0.0/profiling.rs:585:28
|
585 | let mem_string = match get_resident() {
| ^^^^^^^^^^^^ not found in this scope
error: aborting due to 2 previous errors