Skip to content

Commit c3ef482

Browse files
committed
Update codebase to version 0.6 to include secp256k1 musig module
1 parent bb1070b commit c3ef482

File tree

150 files changed

+16701
-17182
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

150 files changed

+16701
-17182
lines changed

secp256k1-sys/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ description = "FFI for Pieter Wuille's `libsecp256k1` library."
1212
keywords = [ "secp256k1", "libsecp256k1", "ffi" ]
1313
readme = "README.md"
1414
build = "build.rs"
15-
links = "rustsecp256k1_v0_11_0"
15+
links = "rustsecp256k1_v0_11"
1616
edition = "2021"
1717
rust-version = "1.63.0"
1818

Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# This file was automatically created by vendor-libsecp.sh
2-
1ad5185cd42c0636104129fcc9f6a4bf9c67cc40
2+
0cdc758a56360bf58a851fe91085a327ec97685a

secp256k1-sys/depend/secp256k1/.cirrus.yml

+9-3
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ env:
1010
MAKEFLAGS: -j4
1111
BUILD: check
1212
### secp256k1 config
13-
ECMULTWINDOW: auto
14-
ECMULTGENPRECISION: auto
13+
ECMULTWINDOW: 15
14+
ECMULTGENKB: 22
1515
ASM: no
1616
WIDEMUL: auto
1717
WITH_VALGRIND: yes
@@ -20,10 +20,12 @@ env:
2020
EXPERIMENTAL: no
2121
ECDH: no
2222
RECOVERY: no
23+
EXTRAKEYS: no
2324
SCHNORRSIG: no
25+
MUSIG: no
2426
ELLSWIFT: no
2527
### test options
26-
SECP256K1_TEST_ITERS:
28+
SECP256K1_TEST_ITERS: 64
2729
BENCH: yes
2830
SECP256K1_BENCH_ITERS: 2
2931
CTIMETESTS: yes
@@ -66,7 +68,9 @@ task:
6668
env:
6769
ECDH: yes
6870
RECOVERY: yes
71+
EXTRAKEYS: yes
6972
SCHNORRSIG: yes
73+
MUSIG: yes
7074
ELLSWIFT: yes
7175
matrix:
7276
# Currently only gcc-snapshot, the other compilers are tested on GHA with QEMU
@@ -82,7 +86,9 @@ task:
8286
env:
8387
ECDH: yes
8488
RECOVERY: yes
89+
EXTRAKEYS: yes
8590
SCHNORRSIG: yes
91+
MUSIG: yes
8692
ELLSWIFT: yes
8793
WRAPPER_CMD: 'valgrind --error-exitcode=42'
8894
SECP256K1_TEST_ITERS: 2

secp256k1-sys/depend/secp256k1/.github/actions/install-homebrew-valgrind/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ runs:
1616
cat valgrind_fingerprint
1717
shell: bash
1818
19-
- uses: actions/cache@v3
19+
- uses: actions/cache@v4
2020
id: cache
2121
with:
2222
path: ${{ env.CI_HOMEBREW_CELLAR_VALGRIND }}

secp256k1-sys/depend/secp256k1/.github/actions/run-in-docker-action/action.yml

+5
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@ runs:
3636
load: true
3737
cache-from: type=gha
3838

39+
- # Workaround for https://github.com/google/sanitizers/issues/1614 .
40+
# The underlying issue has been fixed in clang 18.1.3.
41+
run: sudo sysctl -w vm.mmap_rnd_bits=28
42+
shell: bash
43+
3944
- # Tell Docker to pass environment variables in `env` into the container.
4045
run: >
4146
docker run \

0 commit comments

Comments
 (0)