13 releases (breaking)

Uses old Rust 2015

0.10.1 Oct 24, 2024
0.10.0 Jul 9, 2024
0.9.1 Jan 4, 2024
0.8.1 Jul 18, 2023
0.1.0 Jun 3, 2019

#850 in Magic Beans

Download history 2946/week @ 2024-07-13 2776/week @ 2024-07-20 4491/week @ 2024-07-27 2900/week @ 2024-08-03 1883/week @ 2024-08-10 2759/week @ 2024-08-17 2243/week @ 2024-08-24 2652/week @ 2024-08-31 1976/week @ 2024-09-07 3439/week @ 2024-09-14 2438/week @ 2024-09-21 1985/week @ 2024-09-28 1857/week @ 2024-10-05 2707/week @ 2024-10-12 1820/week @ 2024-10-19 1832/week @ 2024-10-26

8,434 downloads per month
Used in 90 crates (via secp256k1-zkp)

CC0 license

4.5MB
38K SLoC

C 36K SLoC // 0.0% comments GNU Style Assembly 754 SLoC // 0.1% comments Rust 606 SLoC // 0.1% comments Python 445 SLoC // 0.3% comments Shell 386 SLoC // 0.1% comments Automake 266 SLoC // 0.1% comments M4 61 SLoC // 0.1% comments

Contains (obscure autoconf code, 29KB) depend/secp256k1/configure.ac

secp256k1-zkp-sys

This crate provides Rust definitions for the FFI structures and methods.

Vendoring

The default build process is to build using the vendored libsecp256k1-zkp sources in the depend folder. These sources are prefixed with a special rust-secp256k1-zkp-sys-specific prefix rustsecp256k1zkp_v1_2_3_.

This prefix ensures that no symbol collision can happen:

  • when a Rust project has two different versions of rust-secp256k1-zkp in its depepdency tree, or
  • when rust-secp256k1-zkp is used for building a static library in a context where existing libsecp256k1-zkp symbols are already linked.

To update the vendored sources, use the vendor-libsecp.sh script:

$ ./vendor-libsecp.sh <rev>

Where <rev> is the git revision of libsecp256k1 to checkout. If you do not specify a revision, the script will simply clone the repo and use whatever revision the default branch is pointing to.

Linking to external symbols

If you want to compile this library without using the bundled symbols (which may be required for integration into other build systems), you can do so by adding --cfg=rust_secp_no_symbol_renaming' to your RUSTFLAGS variable.

Minimum Supported Rust Version

This library should always compile with any combination of features on Rust 1.56.1.

Dependencies

~5MB
~44K SLoC