1
0
Fork 0
mirror of https://github.com/BLAKE3-team/BLAKE3 synced 2024-05-26 11:46:04 +02:00
BLAKE3/test_vectors/Cargo.toml
Jack O'Connor bd160e33a2 factor out the `blake3` crate changes from the guts_api branch
This commit and the branch that it starts are unlikely to land as-is,
but I want to maintain them while I flesh out the new `blake3_guts`
sub-crate.
2024-01-21 21:51:53 -08:00

20 lines
514 B
INI

[package]
name = "test_vectors"
version = "0.0.0"
edition = "2021"
[features]
neon = ["blake3/neon"]
prefer_intrinsics = ["blake3/prefer_intrinsics"]
pure = ["blake3/pure"]
[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 = "../" }
blake3_guts = { path = "../rust/guts" }
hex = "0.4.0"
reference_impl = { path = "../reference_impl" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"