mirror of
https://github.com/BLAKE3-team/BLAKE3
synced 2025-01-21 15:50:01 +01:00
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.
19 lines
474 B
INI
19 lines
474 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 = "../" }
|
|
hex = "0.4.0"
|
|
reference_impl = { path = "../reference_impl" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|