aboutsummaryrefslogtreecommitdiff
path: root/test_vectors/Cargo.toml
blob: a90a18f4a2fe9fb5225a1a190a32b2a52a3d60cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[package]
name = "test_vectors"
version = "0.0.0"
edition = "2024"

[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"