-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
46 lines (41 loc) · 1.31 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "strobe-rs"
repository = "https://github.com/rozbb/strobe-rs"
documentation = "https://docs.rs/strobe-rs"
description = "An implementation of the Strobe protocol framework in pure Rust"
readme = "README.md"
version = "0.10.0"
edition = "2021"
authors = ["Michael Rosenberg <[email protected]>"]
license = "MIT/Apache-2.0"
keywords = ["crypto", "strobe", "protocol", "framework", "no_std"]
categories = ["cryptography", "no-std"]
[features]
default = []
std = []
asm = ["keccak/asm"]
serialize_secret_state = ["serde", "serde-big-array"]
[dependencies]
bitflags = "1.3"
byteorder = { version = "1.5", default-features = false }
keccak = "0.1"
serde = { version = "1", optional = true, default-features = false, features = [
"derive",
] }
serde-big-array = { version = "0.4", optional = true }
subtle = { version = "2.6", default-features = false }
zeroize = { version = "1.8", features = ["derive"] }
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
hex = "0.4"
rand = "0.8.5"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Criteron benches
[[bench]]
name = "benches"
harness = false
# Tell docs.rs to build docs with `--all-features` and `--cfg docsrs` (for nightly docs features)
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]