Files
opaque-vx/Cargo.toml
T
François Garillot 8885fe5aa1 Re-establish cargo check --all-targets
The bench in benches/oprf.rs requires a feature to have visibility over private members, and doesn't work without it.
`cargo check --all-targets` is the standard quick way to check code under build & test targets, but does not specify features.

This simply skips the `benches` when the `"bench"` feature it depends on is not activated.
2020-07-22 15:22:47 -04:00

44 lines
968 B
TOML

[package]
name = "opaque-ke"
version = "0.1.0"
repository = "https://github.com/novifinancial/opaque-ke"
keywords = ["cryptography", "crypto", "opaque", "passwords", "authentication"]
description = "An implementation of the OPAQUE password-authenticated key exchange protocol"
authors = ["Kevin Lewi <[email protected]>", "François Garillot <[email protected]>"]
license = "MIT"
edition = "2018"
readme = "README.md"
[features]
default = []
slow-hash = ["scrypt"]
bench = []
[dependencies]
aead = "0.3.1"
curve25519-dalek = "2.1.0"
displaydoc = "0.1"
generic-array = "0.14.2"
hkdf = "0.9.0-alpha.0"
hmac = "0.8.0"
rand_core = "0.5.1"
scrypt = { version = "0.3.0", optional = true }
sha2 = "0.9.0"
thiserror = "1.0.19"
x25519-dalek = "0.6.0"
zeroize = "1.1"
[dev-dependencies]
base64 = "0.12.1"
criterion = "0.3.3"
hex = "0.4.2"
lazy_static = "1.4.0"
serde_json = "1.0.55"
proptest = "0.10.0"
rand = "0.7"
[[bench]]
name = "oprf"
harness = false
required-features = ["bench"]