aboutsummaryrefslogtreecommitdiff
path: root/test_vectors/Cargo.toml
AgeCommit message (Collapse)Author
2026-01-08update to the 2024 editionJack O'Connor
While we're taking this MSRV bump, we can also update `constant_time_eq`, which uses the 2024 edition in its most recent versions.
2025-03-18add wasm tests to CIJack O'Connor
2023-03-25upgrade all Cargo.toml files to edition=2021Jack O'Connor
The MSRV is already 1.60, so this doesn't affect much. The only impact to other code is that we no longer need to explicitly import TryInto.
2020-03-29refactor the Cargo feature setJack O'Connor
The biggest change here is that assembly implementations are enabled by default. Added features: - "pure" (Pure Rust, with no C or assembly implementations.) Removed features: - "c" (Now basically the default.) Renamed features; - "c_prefer_intrinsics" -> "prefer_intrinsics" - "c_neon" -> "neon" Unchanged: - "rayon" - "std" (Still the only feature on by default.)
2020-02-12integrate assembly implementations into the blake3 crateJack O'Connor
2020-01-04turn on AVX-512 in the test vectorsJack O'Connor
2019-12-11run the test vectors on cross tests (ARM, MIPS) on CIJack O'Connor
2019-12-11add the test_vectors sub-crateJack O'Connor