1
0
mirror of https://github.com/BLAKE3-team/BLAKE3 synced 2026-03-07 15:46:24 +01:00
BLAKE3/test_vectors/Cargo.toml
2025-03-18 10:00:16 -07:00

20 lines
511 B
INI

[package]
name = "test_vectors"
version = "0.0.0"
edition = "2021"
[features]
neon = ["blake3/neon"]
prefer_intrinsics = ["blake3/prefer_intrinsics"]
pure = ["blake3/pure"]
wasm32_simd = ["blake3/wasm32_simd"]
[dependencies]
# If you ever change these path dependencies, you'll probably need to update
# cross_test.sh, or CI will break. I'm sorry >.<
blake3 = { path = "../" }
hex = "0.4.0"
reference_impl = { path = "../reference_impl" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"