Skip to content
This repository was archived by the owner on Feb 3, 2025. It is now read-only.

DLCs #888

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft

DLCs #888

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
62 changes: 62 additions & 0 deletions Cargo.lock

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

6 changes: 6 additions & 0 deletions mutiny-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ bitcoin = { version = "0.29.2", default-features = false, features = ["std", "se
bdk = { version = "=1.0.0-alpha.1" }
bdk_esplora = { version = "=0.3.0", default-features = false, features = ["std", "async-https"] }
bdk_chain = { version = "=0.5.0", features = ["std"] }
bdk_coin_select = "0.1.1"
bdk-macros = "0.6.0"
getrandom = { version = "0.2" }
itertools = "0.11.0"
Expand Down Expand Up @@ -66,6 +67,11 @@ futures = "0.3.25"
thiserror = "1.0"
anyhow = "1.0"

dlc = { git = "https://github.com/benthecarman/rust-dlc", branch = "mutiny", features = ["use-serde"] }
dlc-manager = { git = "https://github.com/benthecarman/rust-dlc", branch = "mutiny", features = ["use-serde"] }
dlc-messages = { git = "https://github.com/benthecarman/rust-dlc", branch = "mutiny", features = [ "use-serde"] }
dlc-trie = { git = "https://github.com/benthecarman/rust-dlc", branch = "mutiny", features = ["use-serde"] }

[dev-dependencies]
wasm-bindgen-test = "0.3.33"
mockall = "0.11.2"
Expand Down
Loading