2020-10-15 18:14:39 -04:00
|
|
|
[package]
|
|
|
|
name = "swap"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["CoBloX developers <team@coblox.tech>"]
|
|
|
|
edition = "2018"
|
|
|
|
description = "XMR/BTC trustless atomic swaps."
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1"
|
2020-11-11 19:06:34 -05:00
|
|
|
async-recursion = "0.3.1"
|
2020-11-30 23:38:24 -05:00
|
|
|
async-trait = "0.1"
|
2020-10-15 18:14:39 -04:00
|
|
|
atty = "0.2"
|
2020-10-20 23:41:50 -04:00
|
|
|
backoff = { version = "0.2", features = ["tokio"] }
|
|
|
|
base64 = "0.12"
|
|
|
|
bitcoin = { version = "0.23", features = ["rand", "use-serde"] } # TODO: Upgrade other crates in this repo to use this version.
|
2020-12-01 19:32:34 -05:00
|
|
|
bitcoin-harness = { git = "https://github.com/d4nte/bitcoin-harness-rs", rev = "2869620689f7e54bdb8ab3d1838560cb9bc8fd60" }
|
2020-11-25 00:27:57 -05:00
|
|
|
conquer-once = "0.3"
|
2020-10-15 18:14:39 -04:00
|
|
|
derivative = "2"
|
2020-11-03 01:08:31 -05:00
|
|
|
ecdsa_fun = { git = "https://github.com/LLFourn/secp256kfun", rev = "510d48ef6a2b19805f7f5c70c598e5b03f668e7a", features = ["libsecp_compat", "serde", "serialization"] }
|
2020-10-15 18:14:39 -04:00
|
|
|
futures = { version = "0.3", default-features = false }
|
2020-10-26 21:11:03 -04:00
|
|
|
genawaiter = "0.99.1"
|
2020-10-21 22:39:18 -04:00
|
|
|
libp2p = { version = "0.29", default-features = false, features = ["tcp-tokio", "yamux", "mplex", "dns", "noise", "request-response"] }
|
|
|
|
libp2p-tokio-socks5 = "0.4"
|
2020-10-15 18:14:39 -04:00
|
|
|
log = { version = "0.4", features = ["serde"] }
|
2020-11-02 00:00:10 -05:00
|
|
|
monero = { version = "0.9", features = ["serde_support"] }
|
2020-10-26 21:11:03 -04:00
|
|
|
monero-harness = { path = "../monero-harness" }
|
2020-11-03 00:44:04 -05:00
|
|
|
prettytable-rs = "0.8"
|
2020-10-15 18:14:39 -04:00
|
|
|
rand = "0.7"
|
2020-10-22 19:32:48 -04:00
|
|
|
reqwest = { version = "0.10", default-features = false, features = ["socks"] }
|
2020-10-15 18:14:39 -04:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2020-10-22 22:13:17 -04:00
|
|
|
serde_cbor = "0.11"
|
2020-10-15 18:14:39 -04:00
|
|
|
serde_derive = "1.0"
|
|
|
|
serde_json = "1"
|
2020-11-04 23:48:31 -05:00
|
|
|
sha2 = "0.9"
|
2020-10-22 22:13:17 -04:00
|
|
|
sled = "0.34"
|
2020-10-15 18:14:39 -04:00
|
|
|
structopt = "0.3"
|
2020-10-22 22:13:17 -04:00
|
|
|
tempfile = "3"
|
2020-10-15 18:14:39 -04:00
|
|
|
time = "0.2"
|
|
|
|
tokio = { version = "0.2", features = ["rt-threaded", "time", "macros", "sync"] }
|
2020-11-02 18:55:54 -05:00
|
|
|
torut = { version = "0.1" }
|
2020-10-15 18:14:39 -04:00
|
|
|
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"] }
|
2020-10-21 18:58:22 -04:00
|
|
|
url = "2.1"
|
2020-11-02 22:23:03 -05:00
|
|
|
uuid = { version = "0.8", features = ["serde", "v4"] }
|
2020-10-15 18:14:39 -04:00
|
|
|
void = "1"
|
2020-10-22 19:32:48 -04:00
|
|
|
xmr-btc = { path = "../xmr-btc" }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
hyper = "0.13"
|
|
|
|
port_check = "0.1"
|
|
|
|
spectral = "0.6"
|
|
|
|
tempfile = "3"
|
2020-11-02 19:56:13 -05:00
|
|
|
testcontainers = "0.11"
|