2014-07-07 05:41:22 +00:00
[ package ]
2015-03-25 22:20:44 +00:00
name = "secp256k1"
2022-06-27 17:11:03 +00:00
version = "0.23.2"
2014-09-01 03:26:02 +00:00
authors = [ "Dawid Ciężarkiewicz <dpc@ucore.info>" ,
2015-05-04 15:33:53 +00:00
"Andrew Poelstra <apoelstra@wpsoftware.net>" ]
2015-05-04 15:26:45 +00:00
license = "CC0-1.0"
2018-03-05 19:42:39 +00:00
homepage = "https://github.com/rust-bitcoin/rust-secp256k1/"
repository = "https://github.com/rust-bitcoin/rust-secp256k1/"
2018-07-09 12:13:13 +00:00
documentation = "https://docs.rs/secp256k1/"
2021-06-19 09:06:27 +00:00
description = "Rust wrapper library for Pieter Wuille's `libsecp256k1`. Implements ECDSA and BIP 340 signatures for the SECG elliptic curve group secp256k1 and related utilities."
2015-05-04 15:26:45 +00:00
keywords = [ "crypto" , "ECDSA" , "secp256k1" , "libsecp256k1" , "bitcoin" ]
readme = "README.md"
2021-09-14 09:18:22 +00:00
edition = "2018"
2018-07-31 15:55:58 +00:00
# Should make docs.rs show all functions, even those behind non-default features
[ package . metadata . docs . rs ]
2022-01-07 00:12:41 +00:00
features = [ "rand" , "rand-std" , "serde" , "bitcoin_hashes" , "recovery" , "global-context" ]
2022-01-04 15:55:01 +00:00
rustdoc-args = [ "--cfg" , "docsrs" ]
2018-07-31 15:55:58 +00:00
2015-07-28 17:38:01 +00:00
[ features ]
2020-03-24 13:20:18 +00:00
unstable = [ "recovery" , "rand-std" ]
2019-02-18 12:30:39 +00:00
default = [ "std" ]
2021-09-14 14:40:16 +00:00
std = [ "alloc" , "secp256k1-sys/std" ]
2021-05-17 12:37:36 +00:00
# allow use of Secp256k1::new and related API that requires an allocator
2021-09-14 14:40:16 +00:00
alloc = [ "secp256k1-sys/alloc" ]
bitcoin-hashes-std = [ "bitcoin_hashes/std" ]
2022-06-24 03:36:29 +00:00
rand-std = [ "rand/std" , "rand/std_rng" ]
2019-10-21 12:15:19 +00:00
recovery = [ "secp256k1-sys/recovery" ]
lowmemory = [ "secp256k1-sys/lowmemory" ]
2022-02-01 04:43:46 +00:00
global-context = [ "std" ]
2022-02-16 23:46:52 +00:00
# disable re-randomization of the global context, which provides some
# defense-in-depth against sidechannel attacks. You should only use
# this feature if you expect the `rand` crate's thread_rng to panic.
# (If you are sure the `rand-std` feature will not be enabled, e.g.
# if you are doing a no-std build, then this feature does nothing
# and is not necessary.)
2022-03-28 13:39:06 +00:00
global-context-less-secure = [ "global-context" ]
2019-10-28 21:21:47 +00:00
2019-10-21 12:15:19 +00:00
[ dependencies ]
2022-06-21 20:37:45 +00:00
secp256k1-sys = { version = "0.6.0" , default-features = false , path = "./secp256k1-sys" }
2022-03-02 09:01:12 +00:00
serde = { version = "1.0" , default-features = false , optional = true }
2022-03-01 16:22:37 +00:00
2022-03-02 09:01:12 +00:00
# You likely only want to enable these if you explicitly do not want to use "std", otherwise enable
# the respective -std feature e.g., bitcoin-hashes-std
2022-03-01 16:24:05 +00:00
bitcoin_hashes = { version = "0.10" , default-features = false , optional = true }
2021-09-14 10:36:50 +00:00
rand = { version = "0.8" , default-features = false , optional = true }
2020-08-27 19:58:00 +00:00
2017-12-19 20:36:46 +00:00
[ dev-dependencies ]
2021-09-14 10:36:50 +00:00
rand = "0.8"
rand_core = "0.6"
2019-11-20 14:44:53 +00:00
serde_test = "1.0"
2021-09-08 05:21:39 +00:00
bitcoin_hashes = "0.10"
2022-03-08 00:55:05 +00:00
bincode = "1.3.3"
# cbor does not build on WASM, we use it in a single trivial test (an example of when
# fixed-width-serde breaks down). Just run the test when on an x86_64 machine.
2022-06-24 14:30:25 +00:00
[ target . 'cfg(target_arch = "x86_64")' . dev-dependencies ]
2022-03-08 00:55:05 +00:00
cbor = "0.4.1"
2015-07-28 17:38:01 +00:00
2020-04-16 17:07:14 +00:00
[ target . wasm32-unknown-unknown . dev-dependencies ]
wasm-bindgen-test = "0.3"
2022-04-28 14:30:58 +00:00
getrandom = { version = "0.2" , features = [ "js" ] }
2020-04-16 17:07:14 +00:00
2019-10-28 20:09:18 +00:00
2019-10-28 20:10:31 +00:00
[ [ example ] ]
name = "sign_verify_recovery"
2022-02-01 03:59:29 +00:00
required-features = [ "std" , "recovery" ]
2019-10-28 20:10:31 +00:00
2019-10-28 20:09:59 +00:00
[ [ example ] ]
name = "sign_verify"
2022-02-01 03:59:29 +00:00
required-features = [ "std" ]
2019-10-28 20:09:59 +00:00
2019-10-28 20:09:18 +00:00
[ [ example ] ]
name = "generate_keys"
2022-02-01 03:59:29 +00:00
required-features = [ "std" , "rand-std" ]
2020-12-18 12:08:52 +00:00
[ workspace ]
members = [ "secp256k1-sys" ]
2021-01-11 19:15:10 +00:00
exclude = [ "no_std_test" ]