Trying to merge a wallet PR (and ending up in a rabbit hole), the latest version of the thiserror crate is implicitly referencing rust's core library, while the grin_store crate was also using the identifier core to reference grin_core. This updates grin_store's grin_core import to be explicit and resolve the error.
Trying to merge a wallet PR (and ending up in a rabbit hole), the latest version of the
thiserror
crate is implicitly referencing rust'score
library, while thegrin_store
crate was also using the identifiercore
to referencegrin_core
. This updatesgrin_store
'sgrin_core
import to be explicit and resolve the error.We probably shouldn't have used the name
core
, (see https://github.com/rust-lang/cargo/issues/7760), but I think we'll be fine since we're exporting the crate asgrin_core
.Reason for change: see https://github.com/dtolnay/thiserror/pull/255
Also updates
Cargo.lock