Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6e7035b

Browse files
committedJan 25, 2022
Enable build with global-context-less-secure
All features should be able to be built individually, this is currently not the case with `global-context-less-secure`. Enable `std` if `global-context-less-secure` is enabled (because `Once` only comes from `std`, not available in `core`). Add `global-context-less-secure` to the features test array in `contrib/test.sh`.
1 parent b20302e commit 6e7035b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
 

‎Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ rand-std = ["rand/std"]
2727
recovery = ["secp256k1-sys/recovery"]
2828
lowmemory = ["secp256k1-sys/lowmemory"]
2929
global-context = ["std", "rand-std", "global-context-less-secure"]
30-
global-context-less-secure = []
30+
global-context-less-secure = ["std"]
3131

3232
[dependencies]
3333
secp256k1-sys = { version = "0.4.2", default-features = false, path = "./secp256k1-sys" }

‎contrib/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh -ex
22

3-
FEATURES="bitcoin_hashes global-context lowmemory rand rand-std recovery serde"
3+
FEATURES="bitcoin_hashes global-context-less-secure global-context lowmemory rand rand-std recovery serde"
44

55
# Use toolchain if explicitly specified
66
if [ -n "$TOOLCHAIN" ]

‎src/context.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ use Secp256k1;
1010
pub use self::alloc_only::*;
1111

1212
#[cfg(feature = "global-context-less-secure")]
13-
#[cfg_attr(docsrs, doc(cfg(any(feature = "global-context", feature = "global-context-less-secure"))))]
13+
#[cfg_attr(docsrs, doc(cfg(feature = "global-context-less-secure")))]
1414
/// Module implementing a singleton pattern for a global `Secp256k1` context
1515
pub mod global {
1616
#[cfg(feature = "global-context")]
1717
use rand;
1818

19-
use std::ops::Deref;
19+
use core::ops::Deref;
2020
use std::sync::Once;
2121
use {Secp256k1, All};
2222

0 commit comments

Comments
 (0)
Please sign in to comment.