Skip to content

Commit ba04d92

Browse files
committed
Merge #736: Backport of #735 to secp256k1-sys 0.10
21f67d5 secp256k1-sys: release 0.10.1 (Andrew Poelstra) 1f9f77b secp256k1-sys: update util.h patch to delete more stdio code (Andrew Poelstra) Pull request description: This backports #735. I am PR'ing to the secp256k1-0.29.x branch because this will work and because it feels like unnecessary complication to try to create a secp256k1-sys-0.10.x branch, which might be "more correct" but would make our git tree harder to understand and maintain. As in #735, this just deletes some dead code from secp256k1-sys/depend/secp256k1. ACKs for top commit: Kixunil: ACK 21f67d5 Tree-SHA512: 1b88cf2458250d1454696aabc7c85d76337033ac056deb9416f1487eefb504d01c627849b477f68438cf520242cbdef9de89aadb9dbe9f79c94244ce6c8348bf
2 parents 1a1fc57 + 21f67d5 commit ba04d92

File tree

6 files changed

+31
-25
lines changed

6 files changed

+31
-25
lines changed

Cargo-minimal.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ dependencies = [
273273

274274
[[package]]
275275
name = "secp256k1-sys"
276-
version = "0.10.0"
276+
version = "0.10.1"
277277
dependencies = [
278278
"cc",
279279
"libc",

Cargo-recent.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ dependencies = [
194194

195195
[[package]]
196196
name = "secp256k1-sys"
197-
version = "0.10.0"
197+
version = "0.10.1"
198198
dependencies = [
199199
"cc",
200200
"libc",

secp256k1-sys/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.10.1 - 2024-09-10
2+
3+
* Minor build changes to eliminate references to stdio.h [#736](https://github.com/rust-bitcoin/rust-secp256k1/pull/736)
4+
15
# 0.10.0 - 2024-03-28
26

37
* Bump MSRV to Rust `v1.56.1` [#693](https://github.com/rust-bitcoin/rust-secp256k1/pull/693)

secp256k1-sys/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "secp256k1-sys"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
authors = [ "Dawid Ciężarkiewicz <[email protected]>",
55
"Andrew Poelstra <[email protected]>",
66
"Steven Roose <[email protected]>" ]

secp256k1-sys/depend/secp256k1/src/util.h

-21
Original file line numberDiff line numberDiff line change
@@ -11,34 +11,13 @@
1111

1212
#include <stdlib.h>
1313
#include <stdint.h>
14-
#include <stdio.h>
1514
#include <limits.h>
1615

1716
#define STR_(x) #x
1817
#define STR(x) STR_(x)
1918
#define DEBUG_CONFIG_MSG(x) "DEBUG_CONFIG: " x
2019
#define DEBUG_CONFIG_DEF(x) DEBUG_CONFIG_MSG(#x "=" STR(x))
2120

22-
/* Debug helper for printing arrays of unsigned char. */
23-
#define PRINT_BUF(buf, len) do { \
24-
printf("%s[%lu] = ", #buf, (unsigned long)len); \
25-
print_buf_plain(buf, len); \
26-
} while(0)
27-
28-
static void print_buf_plain(const unsigned char *buf, size_t len) {
29-
size_t i;
30-
printf("{");
31-
for (i = 0; i < len; i++) {
32-
if (i % 8 == 0) {
33-
printf("\n ");
34-
} else {
35-
printf(" ");
36-
}
37-
printf("0x%02X,", buf[i]);
38-
}
39-
printf("\n}\n");
40-
}
41-
4221
# if (!defined(__STDC_VERSION__) || (__STDC_VERSION__ < 199901L) )
4322
# if SECP256K1_GNUC_PREREQ(2,7)
4423
# define SECP256K1_INLINE __inline__

secp256k1-sys/depend/util.h.patch

+24-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,27 @@
1-
148,152c148,150
1+
14d13
2+
< #include <stdio.h>
3+
22,41d20
4+
< /* Debug helper for printing arrays of unsigned char. */
5+
< #define PRINT_BUF(buf, len) do { \
6+
< printf("%s[%lu] = ", #buf, (unsigned long)len); \
7+
< print_buf_plain(buf, len); \
8+
< } while(0)
9+
<
10+
< static void print_buf_plain(const unsigned char *buf, size_t len) {
11+
< size_t i;
12+
< printf("{");
13+
< for (i = 0; i < len; i++) {
14+
< if (i % 8 == 0) {
15+
< printf("\n ");
16+
< } else {
17+
< printf(" ");
18+
< }
19+
< printf("0x%02X,", buf[i]);
20+
< }
21+
< printf("\n}\n");
22+
< }
23+
<
24+
148,152c127,129
225
< void *ret = malloc(size);
326
< if (ret == NULL) {
427
< secp256k1_callback_call(cb, "Out of memory");

0 commit comments

Comments
 (0)