paritytech / libsecp256k1

Pure Rust Implementation of secp256k1.
Apache License 2.0
175 stars 84 forks source link

Poor usage of Cargo features for `static-context` vs `lazy-static-context` #77

Closed tomaka closed 2 years ago

tomaka commented 3 years ago

It is currently forbidden to enable both the static-context and lazy-static-context features at the same time: https://docs.rs/libsecp256k1/0.6.0/src/libsecp256k1/lib.rs.html#41

This is strongly discouraged, as documented here.