ristretto255-dh/Cargo.toml

28 lines
833 B
TOML
Raw Normal View History

2020-05-01 08:33:34 -07:00
[package]
name = "ristretto255-dh"
version = "0.1.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
# When releasing to crates.io:
# - Update html_root_url
# - Update CHANGELOG.md
# - Create git tag.
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-01 08:33:34 -07:00
[dependencies]
2020-05-06 18:32:07 -07:00
curve25519-dalek = { version = "2.0.0", features = ["serde"] }
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"
2020-05-06 18:32:07 -07:00
proptest = "0.9"
proptest-derive = "0.1.0"