Trying to run a fresh clone of the repo using cargo run --example simple from newest commit (b990faba8ea59ec2a7450809215145f3e940234a) at time of writing, I get:
error[E0599]: no method named `heap_size` found for associated type `<T as columnation::Columnation>::InnerRegion` in the current scope
--> container/src/columnation.rs:114:20
|
114 | self.inner.heap_size(callback);
| ^^^^^^^^^ method not found in `<T as Columnation>::InnerRegion`
For more information about this error, try `rustc --explain E0599`.
error: could not compile `timely_container` (lib) due to previous error
Reverting to a commit before the line was introduced, i.e. 134842aa6e1cce36a1d68bec3d79c1c3781cd11e, the example runs fine:
Was about to ask whether there's areason Cargo.lock is not committed but instead gitignored but it turns out that this is actually recommended by the Rust book [1, 2]. TIL
Trying to run a fresh clone of the repo using
cargo run --example simple
from newest commit (b990faba8ea59ec2a7450809215145f3e940234a) at time of writing, I get:Reverting to a commit before the line was introduced, i.e. 134842aa6e1cce36a1d68bec3d79c1c3781cd11e, the example runs fine:
My Rust toolchain version is
1.70