Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
160 changes: 148 additions & 12 deletions packages/wasm-utxo/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions packages/wasm-utxo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ wasm-bindgen = "0.2"
js-sys = "0.3"
miniscript = { git = "https://github.com/BitGo/rust-miniscript", tag = "miniscript-12.3.4-opdrop" }
bech32 = "0.11"
secp256k1 = { version = "0.31.1" }
musig2 = { version = "0.3.1" }
getrandom = { version = "0.2", features = ["js"] }

[dev-dependencies]
base64 = "0.22.1"
Expand Down
3 changes: 3 additions & 0 deletions packages/wasm-utxo/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ WASM_PACK = wasm-pack
WASM_OPT = wasm-opt
WASM_PACK_FLAGS = --no-pack --weak-refs

# Fix for secp256k1-sys compilation with strict compilers
export CFLAGS = -Wno-error=implicit-function-declaration

ifdef WASM_PACK_DEV
WASM_PACK_FLAGS += --dev
endif
Expand Down
Loading
Loading