risc0-curve25519-dalek-source/Cargo.toml

60 lines
1.3 KiB
TOML
Raw Normal View History

2016-12-01 00:40:48 +00:00
[package]
name = "ed25519-dalek"
2017-11-06 19:09:12 +00:00
version = "0.5.0"
2016-12-01 00:40:48 +00:00
authors = ["Isis Lovecruft <isis@torproject.org>"]
readme = "README.md"
2017-10-05 06:19:55 +00:00
license = "BSD-3-Clause"
2017-02-21 21:18:40 +00:00
repository = "https://github.com/isislovecruft/ed25519-dalek"
homepage = "https://code.ciph.re/isis/ed25519-dalek"
documentation = "https://docs.rs/ed25519-dalek"
keywords = ["cryptography", "ed25519", "curve25519", "signature", "ECC"]
categories = ["cryptography", "no-std"]
description = "Fast and efficient ed25519 EdDSA key generations, signing, and verification in pure Rust."
2017-03-15 22:48:56 +00:00
exclude = [ ".gitignore", "TESTVECTORS", "res/*" ]
2016-12-01 00:40:48 +00:00
2017-03-14 23:11:47 +00:00
[badges]
travis-ci = { repository = "isislovecruft/ed25519-dalek", branch = "master"}
2016-12-01 00:40:48 +00:00
[dependencies]
2017-08-15 05:39:50 +00:00
arrayref = "0.3.4"
[dependencies.curve25519-dalek]
version = "^0.12"
default-features = false
[dependencies.subtle]
2017-10-05 06:58:17 +00:00
version = "^0.3"
default-features = false
[dependencies.rand]
optional = true
version = "^0.3"
[dependencies.digest]
version = "^0.6"
[dependencies.generic-array]
# same version that digest depends on
version = "^0.8"
[dependencies.serde]
version = "^1.0"
optional = true
[dependencies.sha2]
version = "^0.6"
optional = true
[dev-dependencies]
hex = "0.2"
sha2 = "^0.6"
bincode = "^0.9"
[features]
default = ["std"]
std = ["rand", "curve25519-dalek/std"]
bench = []
nightly = ["curve25519-dalek/nightly"]
asm = ["sha2/asm"]