mirror of
https://github.com/logos-blockchain/sponges.git
synced 2026-07-29 18:13:17 +00:00
The build is failing because `keccak` has a very old MSRV of 1.41, which after merging #40 (which bumped the `ascon` edition to 2021) broke the build because it can't handle the `edition` key. As a workaround, this excludes `keccak` from the toplevel workspace so it doesn't try to read the `ascon` edition key. Separately, we should probably bump the `keccak` edition to 2021 as well and release `keccak` v0.2.0, but that is left for future work.
7 lines
133 B
TOML
7 lines
133 B
TOML
[workspace]
|
|
exclude = ["keccak"] # TODO(tarcieri): add back to `members` when MSRV >= 1.56
|
|
members = [
|
|
"ascon",
|
|
#"keccak",
|
|
]
|