File tree 3 files changed +1750
-0
lines changed
3 files changed +1750
-0
lines changed Original file line number Diff line number Diff line change 8
8
alias cargo=" cargo +$TOOLCHAIN "
9
9
fi
10
10
11
+ # Address Sanitizer
12
+ if [ " $DO_ASAN " = true ]; then
13
+ cargo clean
14
+ CC=' clang -fsanitize=address -fno-omit-frame-pointer' \
15
+ RUSTFLAGS=' -Zsanitizer=address -Clinker=clang -Cforce-frame-pointers=yes' \
16
+ ASAN_OPTIONS=' detect_leaks=1 detect_invalid_pointer_pairs=1 detect_stack_use_after_return=1' \
17
+ cargo test --lib --features=" $FEATURES " -Zbuild-std --target x86_64-unknown-linux-gnu test_nonce
18
+ fi
19
+
20
+
11
21
cargo --version
12
22
rustc --version
13
23
Original file line number Diff line number Diff line change 1
1
mod ecdsa_adaptor;
2
2
mod generator;
3
+ #[ cfg( feature = "std" ) ]
4
+ mod musig;
5
+ #[ cfg( feature = "std" ) ]
6
+ pub use self :: musig:: new_musig_nonce_pair;
7
+
3
8
#[ cfg( feature = "std" ) ]
4
9
mod pedersen;
5
10
#[ cfg( feature = "std" ) ]
@@ -12,6 +17,8 @@ mod whitelist;
12
17
pub use self :: ecdsa_adaptor:: * ;
13
18
pub use self :: generator:: * ;
14
19
#[ cfg( feature = "std" ) ]
20
+ pub use self :: musig:: * ;
21
+ #[ cfg( feature = "std" ) ]
15
22
pub use self :: pedersen:: * ;
16
23
#[ cfg( feature = "std" ) ]
17
24
pub use self :: rangeproof:: * ;
You can’t perform that action at this time.
0 commit comments