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
The borsh serialization of the HashMap did not follow the borsh specification.
It potentially produced non-canonical encodings dependent on insertion order.
It also did not perform canonicty checks on decoding.
This can result in consensus splits and cause equivalent objects to be
considered distinct.
This one is a little bit difficult to fix now because we have two versions of hashbrown in our dependency tree.
❯ cargo tree --invert -p hashbrown error: There are multiple `hashbrown` packages in your project, and the specification `hashbrown` is ambiguous.Please re-run this command with one of the following specifications:[email protected][email protected]console on main [$⇡] via 🦀 v1.83.0
❯ cargo tree --invert -p [email protected]hashbrown v0.12.3└── indexmap v1.9.3 └── tower v0.4.13 ├── tokio-console v0.1.13 (/Volumes/t7/code/console/tokio-console) └── tonic v0.12.3 ├── console-api v0.8.1 (/Volumes/t7/code/console/console-api) │ ├── console-subscriber v0.4.1 (/Volumes/t7/code/console/console-subscriber) │ └── tokio-console v0.1.13 (/Volumes/t7/code/console/tokio-console) ├── console-subscriber v0.4.1 (/Volumes/t7/code/console/console-subscriber) └── tokio-console v0.1.13 (/Volumes/t7/code/console/tokio-console) [dev-dependencies] └── console-subscriber v0.4.1 (/Volumes/t7/code/console/console-subscriber)
We need to wait for the tower to update their dependency first; then we can bump the tower to fix these issues.
hashbrown
0.15.0
>=0.15.1
<0.15.0
The borsh serialization of the HashMap did not follow the borsh specification.
It potentially produced non-canonical encodings dependent on insertion order.
It also did not perform canonicty checks on decoding.
This can result in consensus splits and cause equivalent objects to be
considered distinct.
This was patched in 0.15.1.
See advisory page for additional details.
The text was updated successfully, but these errors were encountered: