Skip to content

Commit f328158

Browse files
OttoAllmendingerllm-git
andcommitted
feat(wasm-utxo): add paste dependency for macro expansion
Add the paste crate to test dependencies to support cleaner test macro expansion for upcoming MuSig2 implementation. Issue: BTC-2652 Co-authored-by: llm-git <[email protected]>
1 parent 21595bf commit f328158

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

packages/wasm-utxo/Cargo.lock

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/wasm-utxo/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ miniscript = { git = "https://github.com/BitGo/rust-miniscript", tag = "miniscri
2020
bech32 = "0.11"
2121
musig2 = { version = "0.3.1", default-features = false, features = ["k256"] }
2222
getrandom = { version = "0.2", features = ["js"] }
23+
pastey = "0.1"
2324

2425
[dev-dependencies]
2526
base64 = "0.22.1"
@@ -28,6 +29,7 @@ serde_json = "1.0"
2829
hex = "0.4"
2930
wasm-bindgen-test = "0.3"
3031
rstest = "0.26.1"
32+
pastey = "0.1"
3133

3234
[profile.release]
3335
# this is required to make webpack happy

packages/wasm-utxo/deny.toml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,16 @@ allow-git = ["https://github.com/BitGo/rust-miniscript"]
1010

1111
# Allow common licenses used in the Rust ecosystem
1212
[licenses]
13-
allow = ["MIT", "Apache-2.0", "CC0-1.0", "MITNFA", "Unicode-DFS-2016", "BSD-3-Clause", "Unlicense"]
13+
allow = [
14+
"MIT",
15+
"Apache-2.0",
16+
"CC0-1.0",
17+
"MITNFA",
18+
"Unicode-DFS-2016",
19+
"Unicode-3.0",
20+
"BSD-3-Clause",
21+
"Unlicense",
22+
]
1423
# Clarify license for unlicensed crate
1524
[[licenses.clarify]]
1625
name = "wasm-utxo"

0 commit comments

Comments
 (0)