rust-secp256k1-unsafe-fast/secp256k1-sys/Cargo.toml

37 lines
1.1 KiB
TOML
Raw Normal View History

2019-10-21 12:15:19 +00:00
[package]
name = "secp256k1-sys"
version = "0.3.0"
2019-10-21 12:15:19 +00:00
authors = [ "Dawid Ciężarkiewicz <dpc@ucore.info>",
"Andrew Poelstra <apoelstra@wpsoftware.net>",
"Steven Roose <steven@stevenroose.org>" ]
license = "CC0-1.0"
homepage = "https://github.com/rust-bitcoin/rust-secp256k1/"
repository = "https://github.com/rust-bitcoin/rust-secp256k1/"
documentation = "https://docs.rs/secp256k1-sys/"
description = "FFI for Pieter Wuille's `libsecp256k1` library."
keywords = [ "secp256k1", "libsecp256k1", "ffi" ]
2019-10-21 12:15:19 +00:00
readme = "README.md"
build = "build.rs"
links = "rustsecp256k1_v0_2_0"
2019-10-21 12:15:19 +00:00
# Should make docs.rs show all functions, even those behind non-default features
[package.metadata.docs.rs]
features = [ "recovery", "endomorphism", "lowmemory" ]
[build-dependencies]
cc = "1.0.28"
2019-10-21 12:15:19 +00:00
[features]
default = ["std"]
recovery = []
endomorphism = []
lowmemory = []
std = []
# Use this feature to not compile the bundled libsecp256k1 C symbols,
# but use external ones. Use this only if you know what you are doing!
external-symbols = []
2019-10-21 12:15:19 +00:00
# Do not use this feature! HAZMAT. (meant for Fuzzing only. this is *BROKEN CRYPTOGRAPHY*)
fuzztarget = []