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
Building a crate that depends on didkit 0.3.0 will fail for fresh builds (no Cargo.lock). This can be replicated by creating a new crate which only depends on didkit 0.3.0 and running cargo build.
This is due to didkit 0.3.0 depending on ssi 0.3.0 and did_methods of the form "x.y". Did method crates increment z when ssi is upgraded, so both ssi v0.4.0 and v0.3.0 are in the dependency tree of didkit.
I suggest:
We release didkit v0.3.1 and yank v0.3.0.
Going forwards in didkit we always depend on did method versions of the form x.y.z to prevent ssi version clashes.
The text was updated successfully, but these errors were encountered:
I also saw that for ssi version 0.3 the ethr version is 0.0.1 not 0.1.0 so we still have the compile issue, same for the other dependencies that we use from ssi
Building a crate that depends on didkit 0.3.0 will fail for fresh builds (no Cargo.lock). This can be replicated by creating a new crate which only depends on didkit 0.3.0 and running
cargo build
.This is due to didkit 0.3.0 depending on ssi 0.3.0 and did_methods of the form "x.y". Did method crates increment
z
when ssi is upgraded, so both ssi v0.4.0 and v0.3.0 are in the dependency tree of didkit.I suggest:
x.y.z
to prevent ssi version clashes.The text was updated successfully, but these errors were encountered: