aboutsummaryrefslogtreecommitdiff
path: root/rust/guts/Cargo.toml
blob: 3525d3e1a4ce1160d2417d8584fd0848bed08103 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "blake3_guts"
version = "0.0.0"
authors = ["Jack O'Connor <[email protected]>", "Samuel Neves"]
description = "low-level building blocks for the BLAKE3 hash function"
repository = "https://github.com/BLAKE3-team/BLAKE3"
license = "CC0-1.0 OR Apache-2.0"
documentation = "https://docs.rs/blake3_guts"
readme = "readme.md"
edition = "2021"

[dependencies]
cfg-if = "1.0.0"

[dev-dependencies]
hex = "0.4.3"
reference_impl = { path = "../../reference_impl" }

[features]
default = ["std"]
std = []

[build-dependencies]
cc = "1.0.79"