libsecp256k1 0.6.0

Pure Rust secp256k1 implementation.
Documentation
[package]
name = "libsecp256k1"
description = "Pure Rust secp256k1 implementation."
license = "Apache-2.0"
version = "0.6.0"
authors = ["Wei Tang <hi@that.world>"]
repository = "https://github.com/paritytech/libsecp256k1"
keywords = ["crypto", "ECDSA", "secp256k1", "bitcoin", "no_std"]
edition = "2018"

[dependencies]
libsecp256k1-core = { version = "0.2.2", path = "core", default-features = false }
arrayref = "0.3"
rand = { version = "0.7", default-features = false }
digest = "0.9"
base64 = { version = "0.12", default-features = false }
hmac-drbg = { version = "0.3", optional = true }
sha2 = { version = "0.9", optional = true, default-features = false }
typenum = { version = "1.12", optional = true }
serde = { version = "1.0.104", features = ["derive"], default-features = false }
lazy_static = { version = "1.4.0", optional = true }

[dev-dependencies]
secp256k1-test = { package = "secp256k1", version = "0.17", features = ["rand-std", "recovery"] }
clear_on_drop = "0.2"
serde_json = "1.0"
hex-literal = "0.2.1"

[build-dependencies]
libsecp256k1-gen-ecmult = { version = "0.2.1", path = "gen/ecmult" }
libsecp256k1-gen-genmult = { version = "0.2.1", path = "gen/genmult" }

[features]
default = ["std", "hmac", "static-context"]
std = ["libsecp256k1-core/std", "sha2/std", "rand/std", "serde/std", "base64/std"]
hmac = ["hmac-drbg", "sha2", "typenum"]
static-context = []
lazy-static-context = ["lazy_static", "std"]

[workspace]
members = [
  "./gen/ecmult",
  "./gen/genmult",
]