2019-10-21 12:15:19 +00:00
|
|
|
[package]
|
|
|
|
name = "secp256k1-sys"
|
2020-08-26 17:40:01 +00:00
|
|
|
version = "0.2.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."
|
2019-12-10 19:48:29 +00:00
|
|
|
keywords = [ "secp256k1", "libsecp256k1", "ffi" ]
|
2019-10-21 12:15:19 +00:00
|
|
|
readme = "README.md"
|
|
|
|
build = "build.rs"
|
2020-08-26 17:35:27 +00:00
|
|
|
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]
|
2020-03-14 14:04:37 +00:00
|
|
|
cc = "1.0.28"
|
2019-10-21 12:15:19 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "secp256k1_sys"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["std"]
|
|
|
|
recovery = []
|
|
|
|
endomorphism = []
|
|
|
|
lowmemory = []
|
|
|
|
std = []
|
|
|
|
|
2019-10-29 11:19:53 +00:00
|
|
|
# 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 = []
|