ristretto255-dh/Cargo.toml

34 lines
858 B
TOML
Raw Normal View History

2020-05-01 08:33:34 -07:00
[package]
name = "ristretto255-dh"
2020-05-11 21:50:29 -07:00
version = "0.3.0"
2020-05-07 23:40:04 -07:00
authors = ["Deirdre Connolly <durumcrustulum@gmail.com>"]
2020-05-01 08:33:34 -07:00
edition = "2018"
2020-05-07 23:40:04 -07:00
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/ZcashFoundation/ristretto255-dh"
categories = ["cryptography"]
documentation = "https://docs.rs/ristretto255-dh"
keywords = ["cryptography", "crypto", "ristretto", "diffie-hellman", "key-exchange"]
description = "Diffie-Hellman key exchange using the Ristretto255 group."
2020-05-07 23:46:11 -07:00
exclude = [
".gitignore",
".github/*",
]
2020-05-01 08:33:34 -07:00
2020-05-08 19:21:19 -07:00
[package.metadata.docs.rs]
features = ["nightly"]
2020-05-01 08:33:34 -07:00
[dependencies]
curve25519-dalek = { version = "3.0.0", features = ["serde"] }
2020-05-06 18:32:07 -07:00
rand_core = "0.5.1"
serde = { version = "1.0", features = ["derive"] }
zeroize = "1.1.0"
[dev-dependencies]
2020-05-06 23:57:07 -07:00
bincode = "1.2.1"
proptest = "1.0"
proptest-derive = "0.3.0"
2020-05-08 19:21:19 -07:00
[features]
nightly = []