I tried creating a staking canister and got this error message.
error[E0432]: unresolved import self::matrix::BandMatrix
--> /home/elari/.cargo/registry/src/index.crates.io-6f17d22bba15001f/storage-0.5.0/src/matrix.rs:5:9
|
5 | pub use self::matrix::BandMatrix;
| ^^^^^^^^^^^^^^^^^^^^^^^^ no BandMatrix in the root
error[E0432]: unresolved imports self::matrix::CompressedMatrix, self::matrix::CompressedFormat
--> /home/elari/.cargo/registry/src/index.crates.io-6f17d22bba15001f/storage-0.5.0/src/matrix.rs:6:24
|
6 | pub use self::matrix::{CompressedMatrix, CompressedFormat};
| ^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^ no CompressedFormat in the root
| |
| no CompressedMatrix in the root
error[E0432]: unresolved imports self::matrix::PackedMatrix, self::matrix::PackedFormat
--> /home/elari/.cargo/registry/src/index.crates.io-6f17d22bba15001f/storage-0.5.0/src/matrix.rs:8:24
|
8 | pub use self::matrix::{PackedMatrix, PackedFormat};
| ^^^^^^^^^^^^ ^^^^^^^^^^^^ no PackedFormat in the root
| |
| no PackedMatrix in the root
I can send the code if that makes it easier to help . Storage0.5.0 is installed andplaced in my dependencies already.