1
0
Fork 0
mirror of https://github.com/BLAKE3-team/BLAKE3 synced 2024-05-23 08:46:06 +02:00
BLAKE3/Cargo.toml
2019-12-02 17:30:55 -05:00

26 lines
523 B
INI

[package]
name = "blake3"
version = "0.1.0"
authors = ["Jack O'Connor <oconnor663@gmail.com>"]
edition = "2018"
[features]
default = ["c", "std"]
c = []
std = []
[dependencies]
arrayref = "0.3.5"
arrayvec = { version = "0.5.1", default-features = false, features = ["array-sizes-33-128"] }
bitflags = "1.2.1"
constant_time_eq = "0.1.4"
rayon = { version = "1.2.1", optional = true }
[dev-dependencies]
page_size = "0.4.1"
rand = "0.7.2"
reference_impl = { path = "./reference_impl" }
[build-dependencies]
cc = "1.0.47"