ring/Cargo.toml
Brian Smith cf6dfad269 Remove the dependency on the num crate.
Now we don't have to trust that `num` is doing the math correctly. The
code generator is going away anyway. It's a good idea in theory but in
practice it wasn't worth its complexity.
2016-07-03 10:38:08 -10:00

48 lines
947 B
TOML

[package]
authors = ["Brian Smith <brian@briansmith.org>"]
build = "build.rs"
description = "A Rust interface for a simplification of BoringSSL's libcrypto."
license-file = "LICENSE"
name = "ring"
readme = "README.md"
repository = "https://github.com/briansmith/ring"
version = "0.1.0"
[lib]
name = "ring"
[dependencies]
lazy_static = "0.2.1"
untrusted = "0.2"
[dev-dependencies]
rustc-serialize = "0.3.19"
[features]
# These features are documented in the top-level module's documentation.
default = ["use_heap"]
disable_dev_urandom_fallback = []
internal_benches = []
rsa_signing = []
slow_tests = []
test_logging = []
use_heap = []
# XXX: debug = false because of https://github.com/rust-lang/rust/issues/34122
[profile.bench]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1