2016-12-08 05:12:00 +00:00
[ package ]
name = "curve25519-dalek"
2017-07-31 19:40:17 +00:00
version = "0.9.3"
2016-12-08 05:12:00 +00:00
authors = [ "Isis Lovecruft <isis@patternsinthevoid.net>" ,
"Henry de Valence <hdevalence@hdevalence.ca>" ]
readme = "README.md"
2016-12-08 21:54:02 +00:00
license = "CC0-1.0"
2017-02-21 21:53:06 +00:00
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"
2017-02-14 16:34:24 +00:00
categories = [ "cryptography" , "no-std" ]
2016-12-08 05:12:00 +00:00
keywords = [ "cryptography" , "curve25519" , "elliptic" , "curve" , "ECC" ]
2016-12-09 02:13:04 +00:00
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-03-14 03:38:13 +00:00
[ 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
2017-01-14 01:43:08 +00:00
[ dependencies . arrayref ]
version = "0.3.3"
[ dependencies . rand ]
optional = true
version = "0.3"
2017-02-27 19:19:06 +00:00
[ dependencies . digest ]
2017-06-26 14:20:07 +00:00
version = "0.6"
2017-02-27 19:19:06 +00:00
2017-05-31 04:37:16 +00:00
[ dependencies . subtle ]
version = "^0.1"
2017-06-27 18:04:45 +00:00
default-features = false
2017-05-31 04:37:16 +00:00
2017-02-27 19:19:06 +00:00
[ dependencies . generic-array ]
# same version that digest depends on
2017-06-26 20:31:37 +00:00
version = "^0.8"
2017-02-27 19:19:06 +00:00
[ dev-dependencies . sha2 ]
2017-06-26 14:20:07 +00:00
version = "0.6"
2017-02-27 19:19:06 +00:00
2017-05-15 01:06:59 +00:00
[ dev-dependencies . serde_cbor ]
version = "0.6"
2017-01-14 01:43:08 +00:00
[ features ]
2017-04-26 04:55:19 +00:00
nightly = [ "radix_51" ]
2017-01-14 01:43:08 +00:00
default = [ "std" ]
2017-06-27 18:04:45 +00:00
std = [ "rand" , "subtle/std" ]
2017-06-19 23:59:45 +00:00
alloc = [ ]
2017-02-20 12:04:12 +00:00
yolocrypto = [ ]
2017-03-14 01:59:08 +00:00
bench = [ ]
2017-03-13 06:17:40 +00:00
# Radix-51 arithmetic using u128
radix_51 = [ ]
2016-12-08 05:12:00 +00:00
# The development profile, used for `cargo build`.
[ profile . dev ]
opt-level = 0 # controls the `--opt-level` the compiler builds with
debug = true # controls whether the compiler passes `-g`
rpath = false # controls whether the compiler passes `-C rpath`
lto = false # controls `-C lto` for binaries and staticlibs
debug-assertions = true # controls whether debug assertions are enabled
codegen-units = 1 # controls whether the compiler passes `-C codegen-units`
# `codegen-units` is ignored when `lto = true`
2017-02-21 20:59:04 +00:00
panic = 'unwind' # panic strategy (`-C panic=...`), can also be 'abort'
2016-12-08 05:12:00 +00:00
# The release profile, used for `cargo build --release`.
[ profile . release ]
opt-level = 3
debug = false
rpath = false
lto = false
debug-assertions = false
codegen-units = 1
panic = 'unwind'
# The testing profile, used for `cargo test`.
[ profile . test ]
opt-level = 0
debug = true
rpath = false
lto = false
debug-assertions = true
codegen-units = 1
panic = 'unwind'
2017-02-22 22:47:55 +00:00
required-features = [ 'yolocrypto' ]
2016-12-08 05:12:00 +00:00
# The benchmarking profile, used for `cargo bench`.
[ profile . bench ]
opt-level = 3
debug = false
rpath = false
lto = false
debug-assertions = false
codegen-units = 1
panic = 'unwind'
# The documentation profile, used for `cargo doc`.
[ profile . doc ]
opt-level = 0
debug = true
rpath = false
lto = false
debug-assertions = true
codegen-units = 1
panic = 'unwind'