You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I update the Cargo.toml file to use secret cosmwasm v.1.1.9-secret and secret-toolkit v.0.8.0, at compilation I get the following error about incompatible versions of the zeroize package:
error: failed to select a version for `zeroize`.
... required by package `elliptic-curve v0.12.0`
... which satisfies dependency `elliptic-curve = "^0.12"` of package `k256 v0.11.1`
... which satisfies dependency `k256 = "^0.11.1"` of package `cosmwasm-crypto v1.1.9 (https://github.com/scrtlabs/cosmwasm?tag=v1.1.9-secret#e40a15f0)`
... which satisfies git dependency `cosmwasm-crypto` of package `cosmwasm-std v1.1.9 (https://github.com/scrtlabs/cosmwasm?tag=v1.1.9-secret#e40a15f0)`
... which satisfies git dependency `cosmwasm-std` of package `cosmwasm-storage v1.1.9 (https://github.com/scrtlabs/cosmwasm?tag=v1.1.9-secret#e40a15f0)`
... which satisfies git dependency `cosmwasm-storage` of package `secret-toolkit-storage v0.8.0 (https://github.com/scrtlabs/secret-toolkit?tag=v0.8.0#dfbcc26e)`
... which satisfies git dependency `secret-toolkit-storage` of package `secret-toolkit v0.8.0 (https://github.com/scrtlabs/secret-toolkit?tag=v0.8.0#dfbcc26e)`
... which satisfies git dependency `secret-toolkit` of package `snip20-reference-impl v1.0.0 (/home/ben/secret-network-dev/snip20-reference-impl)`
versions that meet the requirements `^1.5` are: 1.5.7, 1.5.6, 1.5.5, 1.5.4, 1.5.3
all possible versions conflict with previously selected packages.
previously selected package `zeroize v1.3.0`
... which satisfies dependency `zeroize = ">=1, <1.4"` (locked to 1.3.0) of package `curve25519-dalek v3.2.1`
... which satisfies dependency `curve25519-dalek = "^3"` (locked to 3.2.1) of package `ed25519-zebra v3.1.0`
... which satisfies dependency `ed25519-zebra = "^3"` (locked to 3.1.0) of package `cosmwasm-crypto v1.1.9 (https://github.com/scrtlabs/cosmwasm?tag=v1.1.9-secret#e40a15f0)`
... which satisfies git dependency `cosmwasm-crypto` of package `cosmwasm-std v1.1.9 (https://github.com/scrtlabs/cosmwasm?tag=v1.1.9-secret#e40a15f0)`
... which satisfies git dependency `cosmwasm-std` of package `cosmwasm-storage v1.1.9 (https://github.com/scrtlabs/cosmwasm?tag=v1.1.9-secret#e40a15f0)`
... which satisfies git dependency `cosmwasm-storage` of package `secret-toolkit-storage v0.8.0 (https://github.com/scrtlabs/secret-toolkit?tag=v0.8.0#dfbcc26e)`
... which satisfies git dependency `secret-toolkit-storage` of package `secret-toolkit v0.8.0 (https://github.com/scrtlabs/secret-toolkit?tag=v0.8.0#dfbcc26e)`
... which satisfies git dependency `secret-toolkit` of package `snip20-reference-impl v1.0.0 (/home/ben/secret-network-dev/snip20-reference-impl)`
failed to select a version for `zeroize` which could resolve this conflict
When I update the
Cargo.toml
file to use secret cosmwasm v.1.1.9-secret and secret-toolkit v.0.8.0, at compilation I get the following error about incompatible versions of thezeroize
package:It seems to indicate that the
ed25519-zebra
andk256
dependencies in the cosmwasm crypto package are incompatible: https://github.com/scrtlabs/cosmwasm/blob/e40a15f04dae80680dbe22aef760e5eaab6b0a19/packages/crypto/Cargo.toml#L25For reference, the only change I made was to update
Cargo.toml
file in thesnip20-reference-impl
to look like this:The text was updated successfully, but these errors were encountered: