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

34 lines
850 B
TOML
Raw Normal View History

2019-10-21 12:15:19 +00:00
[package]
name = "secp256k1-sys"
version = "0.9.2"
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_9_2"
edition = "2018"
2019-10-21 12:15:19 +00:00
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
2019-10-21 12:15:19 +00:00
[build-dependencies]
cc = "1.0.28"
2019-10-21 12:15:19 +00:00
[dev-dependencies]
libc = "0.2"
2019-10-21 12:15:19 +00:00
[features]
default = ["std"]
recovery = []
lowmemory = []
std = ["alloc"]
alloc = []