[package] name = "secp256k1" version = "0.4.1" authors = [ "Dawid Ciężarkiewicz ", "Andrew Poelstra " ] license = "CC0-1.0" homepage = "https://github.com/apoelstra/rust-secp256k1/" repository = "https://github.com/apoelstra/rust-secp256k1/" documentation = "https://www.wpsoftware.net/rustdoc/secp256k1/" description = "Rust bindings for Pieter Wuille's `libsecp256k1` library. Implements ECDSA for the SECG elliptic curve group secp256k1 and related utilities." keywords = [ "crypto", "ECDSA", "secp256k1", "libsecp256k1", "bitcoin" ] readme = "README.md" build = "build.rs" [build-dependencies] gcc = "0.3" [lib] name = "secp256k1" path = "src/lib.rs" [features] unstable = [] [dependencies] arrayvec = "0.3" rand = "0.3" libc = "0.1" rustc-serialize = "0.3" serde = "0.6" serde_json = "0.6"