mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2024-10-31 15:20:15 +00:00
55 lines
1.7 KiB
TOML
55 lines
1.7 KiB
TOML
[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-trait = "0.1"
|
|
atty = "0.2"
|
|
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.
|
|
bitcoin-harness = { git = "https://github.com/coblox/bitcoin-harness-rs", rev = "b56ac243eade11e817aa670d546892852a609e7d" }
|
|
derivative = "2"
|
|
futures = { version = "0.3", default-features = false }
|
|
genawaiter = "0.99.1"
|
|
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 = "0.9"
|
|
monero-harness = { path = "../monero-harness" }
|
|
rand = "0.7"
|
|
reqwest = { version = "0.10", default-features = false, features = ["socks"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_cbor = "0.11"
|
|
serde_derive = "1.0"
|
|
serde_json = "1"
|
|
sled = "0.34"
|
|
structopt = "0.3"
|
|
tempfile = "3"
|
|
time = "0.2"
|
|
tokio = { version = "0.2", features = ["rt-threaded", "time", "macros", "sync"] }
|
|
torut = { version = "0.1", optional = true }
|
|
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"
|
|
void = "1"
|
|
xmr-btc = { path = "../xmr-btc" }
|
|
|
|
[dev-dependencies]
|
|
hyper = "0.13"
|
|
port_check = "0.1"
|
|
spectral = "0.6"
|
|
tempfile = "3"
|
|
testcontainers = "0.10"
|
|
|
|
[features]
|
|
default = []
|
|
tor = ["torut"]
|