xmr-btc-swap/swap/Cargo.toml

56 lines
1.9 KiB
TOML
Raw Normal View History

[package]
name = "swap"
version = "0.1.0"
authors = ["CoBloX developers <team@coblox.tech>"]
edition = "2018"
description = "XMR/BTC trustless atomic swaps."
[dependencies]
anyhow = "1"
async-recursion = "0.3.1"
2020-12-01 04:38:24 +00:00
async-trait = "0.1"
atty = "0.2"
2020-10-21 03:41:50 +00:00
backoff = { version = "0.2", features = ["tokio"] }
base64 = "0.12"
2020-12-03 06:28:23 +00:00
bitcoin = { version = "0.25", features = ["rand", "use-serde"] }
2020-12-06 23:19:15 +00:00
bitcoin-harness = { git = "https://github.com/coblox/bitcoin-harness-rs", rev = "864b55fcba2e770105f135781dd2e3002c503d12" }
conquer-once = "0.3"
derivative = "2"
2020-12-03 06:28:23 +00:00
ecdsa_fun = { git = "https://github.com/LLFourn/secp256kfun", rev = "cdfbc766045ea678a41780919d6228dd5acee3be", features = ["libsecp_compat", "serde"] }
futures = { version = "0.3", default-features = false }
genawaiter = "0.99.1"
2020-10-22 02:39:18 +00:00
libp2p = { version = "0.29", default-features = false, features = ["tcp-tokio", "yamux", "mplex", "dns", "noise", "request-response"] }
libp2p-tokio-socks5 = "0.4"
log = { version = "0.4", features = ["serde"] }
monero = { version = "0.9", features = ["serde_support"] }
monero-harness = { path = "../monero-harness" }
2020-11-03 05:44:04 +00:00
prettytable-rs = "0.8"
rand = "0.7"
2020-10-22 23:32:48 +00:00
reqwest = { version = "0.10", default-features = false, features = ["socks"] }
serde = { version = "1", features = ["derive"] }
2020-10-23 02:13:17 +00:00
serde_cbor = "0.11"
serde_derive = "1.0"
serde_json = "1"
sha2 = "0.9"
2020-10-23 02:13:17 +00:00
sled = "0.34"
structopt = "0.3"
2020-10-23 02:13:17 +00:00
tempfile = "3"
time = "0.2"
tokio = { version = "0.2", features = ["rt-threaded", "time", "macros", "sync"] }
tracing = { version = "0.1", features = ["attributes"] }
tracing-core = "0.1"
tracing-futures = { version = "0.2", features = ["std-future", "futures-03"] }
tracing-log = "0.1"
tracing-subscriber = { version = "0.2", default-features = false, features = ["fmt", "ansi", "env-filter"] }
url = "2.1"
uuid = { version = "0.8", features = ["serde", "v4"] }
void = "1"
2020-10-22 23:32:48 +00:00
xmr-btc = { path = "../xmr-btc" }
[dev-dependencies]
hyper = "0.13"
port_check = "0.1"
spectral = "0.6"
tempfile = "3"
2020-11-03 00:56:13 +00:00
testcontainers = "0.11"