risc0-curve25519-dalek-source/Cargo.toml

63 lines
1.6 KiB
TOML
Raw Normal View History

2016-12-08 05:12:00 +00:00
[package]
name = "curve25519-dalek"
version = "0.13.2"
2016-12-08 05:12:00 +00:00
authors = ["Isis Lovecruft <isis@patternsinthevoid.net>",
"Henry de Valence <hdevalence@hdevalence.ca>"]
readme = "README.md"
2017-08-01 02:05:31 +00:00
license = "BSD-3-Clause"
repository = "https://github.com/isislovecruft/curve25519-dalek"
2016-12-08 05:12:00 +00:00
homepage = "https://code.ciph.re/isis/curve25519-dalek"
documentation = "https://docs.rs/curve25519-dalek"
categories = ["cryptography", "no-std"]
2016-12-08 05:12:00 +00:00
keywords = ["cryptography", "curve25519", "elliptic", "curve", "ECC"]
description = "A low-level cryptographic library for point, group, field, and scalar operations on a curve isomorphic to the twisted Edwards curve defined by -x²+y² = 1 - 121665/121666 x²y² over GF(2²⁵⁵ - 19)."
2016-12-08 05:12:00 +00:00
exclude = [
".gitignore",
2017-11-16 01:13:57 +00:00
".travis.yml",
]
2016-12-08 05:12:00 +00:00
[package.metadata.docs.rs]
rustdoc-args = ["--html-in-header", "rustdoc-include-katex-header.html"]
[badges]
travis-ci = { repository = "isislovecruft/curve25519-dalek", branch = "master"}
2017-05-14 05:40:51 +00:00
[dependencies.serde]
version = "1.0"
2017-05-15 01:06:59 +00:00
optional = true
2017-05-14 05:40:51 +00:00
[dependencies.arrayref]
2017-08-15 04:47:19 +00:00
version = "0.3.4"
[dependencies.rand]
optional = true
version = "0.3"
[dependencies.digest]
2017-06-26 14:20:07 +00:00
version = "0.6"
2017-05-31 04:37:16 +00:00
[dependencies.subtle]
2017-10-05 00:51:42 +00:00
version = "^0.3"
default-features = false
2017-05-31 04:37:16 +00:00
[dependencies.generic-array]
# same version that digest depends on
2017-06-26 20:31:37 +00:00
version = "^0.8"
[dev-dependencies.sha2]
2017-06-26 14:20:07 +00:00
version = "0.6"
2017-05-15 01:06:59 +00:00
[dev-dependencies.serde_cbor]
version = "0.6"
[features]
nightly = ["radix_51", "subtle/nightly"]
default = ["std"]
std = ["rand", "subtle/std"]
alloc = []
2017-10-23 21:24:42 +00:00
# This isn't used at the moment, but keep it around for future yolocrypto features.
yolocrypto = []
bench = []
# Radix-51 arithmetic using u128
radix_51 = []