File tree Expand file tree Collapse file tree 3 files changed +1741
-0
lines changed Expand file tree Collapse file tree 3 files changed +1741
-0
lines changed Original file line number Diff line number Diff line change 88 alias cargo=" cargo +$TOOLCHAIN "
99fi
1010
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+
1121cargo --version
1222rustc --version
1323
Original file line number Diff line number Diff line change 11mod ecdsa_adaptor;
22mod generator;
3+ #[ cfg( feature = "std" ) ]
4+ mod musig;
5+ #[ cfg( feature = "std" ) ]
6+ pub use self :: musig:: new_musig_nonce_pair;
7+
38#[ cfg( feature = "std" ) ]
49mod pedersen;
510#[ cfg( feature = "std" ) ]
@@ -12,6 +17,8 @@ mod whitelist;
1217pub use self :: ecdsa_adaptor:: * ;
1318pub use self :: generator:: * ;
1419#[ cfg( feature = "std" ) ]
20+ pub use self :: musig:: * ;
21+ #[ cfg( feature = "std" ) ]
1522pub use self :: pedersen:: * ;
1623#[ cfg( feature = "std" ) ]
1724pub use self :: rangeproof:: * ;
You can’t perform that action at this time.
0 commit comments