2020-10-15 22:14:39 +00: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-12 00:06:34 +00:00
|
|
|
async-recursion = "0.3.1"
|
2020-12-01 04:38:24 +00:00
|
|
|
async-trait = "0.1"
|
2020-10-15 22:14:39 +00:00
|
|
|
atty = "0.2"
|
2021-01-15 05:58:16 +00:00
|
|
|
backoff = { git = "https://github.com/ihrwein/backoff", rev = "9d03992a83dfdc596be26276d4e5c5254a4b11a2", features = ["tokio"] }
|
2020-10-21 03:41:50 +00:00
|
|
|
base64 = "0.12"
|
2020-12-03 06:28:23 +00:00
|
|
|
bitcoin = { version = "0.25", features = ["rand", "use-serde"] }
|
2021-01-15 05:58:16 +00:00
|
|
|
bitcoin-harness = { git = "https://github.com/coblox/bitcoin-harness-rs", rev = "ae2f6cd547496e680941c0910018bbe884128799" }
|
2021-01-27 02:33:32 +00:00
|
|
|
config = { version = "0.10", default-features = false, features = ["toml"] }
|
2020-11-25 05:27:57 +00:00
|
|
|
conquer-once = "0.3"
|
2021-01-05 03:08:36 +00:00
|
|
|
cross-curve-dleq = { git = "https://github.com/comit-network/cross-curve-dleq", rev = "eddcdea1d1f16fa33ef581d1744014ece535c920", features = ["serde"] }
|
|
|
|
curve25519-dalek = "2"
|
2020-10-15 22:14:39 +00:00
|
|
|
derivative = "2"
|
2021-01-27 02:33:32 +00:00
|
|
|
dialoguer = "0.7"
|
|
|
|
directories-next = "2"
|
2020-12-03 06:28:23 +00:00
|
|
|
ecdsa_fun = { git = "https://github.com/LLFourn/secp256kfun", rev = "cdfbc766045ea678a41780919d6228dd5acee3be", features = ["libsecp_compat", "serde"] }
|
2021-01-05 03:08:36 +00:00
|
|
|
ed25519-dalek = { version = "1.0.0-pre.4", features = ["serde"] }# Cannot be 1 because they depend on curve25519-dalek version 3
|
2020-10-15 22:14:39 +00:00
|
|
|
futures = { version = "0.3", default-features = false }
|
2021-01-15 05:58:16 +00:00
|
|
|
libp2p = { version = "0.34", default-features = false, features = ["tcp-tokio", "yamux", "mplex", "dns", "noise", "request-response"] }
|
2021-02-03 05:45:43 +00:00
|
|
|
libp2p-async-await = { git = "https://github.com/comit-network/rust-libp2p-async-await", rev = "1429cd780204624b4d244e7d8179fe6ff77988c3" }
|
2020-10-15 22:14:39 +00:00
|
|
|
log = { version = "0.4", features = ["serde"] }
|
2021-01-05 03:08:36 +00:00
|
|
|
miniscript = { version = "4", features = ["serde"] }
|
2020-11-02 05:00:10 +00:00
|
|
|
monero = { version = "0.9", features = ["serde_support"] }
|
2020-10-27 01:11:03 +00:00
|
|
|
monero-harness = { path = "../monero-harness" }
|
2021-01-08 01:04:48 +00:00
|
|
|
pem = "0.8"
|
2020-11-03 05:44:04 +00:00
|
|
|
prettytable-rs = "0.8"
|
2020-10-15 22:14:39 +00:00
|
|
|
rand = "0.7"
|
2021-01-15 05:58:16 +00:00
|
|
|
reqwest = { version = "0.11", default-features = false }
|
2021-01-05 03:08:36 +00:00
|
|
|
rust_decimal = "1.8"
|
2020-10-15 22:14:39 +00:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2020-10-23 02:13:17 +00:00
|
|
|
serde_cbor = "0.11"
|
2020-10-15 22:14:39 +00:00
|
|
|
serde_derive = "1.0"
|
|
|
|
serde_json = "1"
|
2020-11-05 04:48:31 +00:00
|
|
|
sha2 = "0.9"
|
2020-10-23 02:13:17 +00:00
|
|
|
sled = "0.34"
|
2020-10-15 22:14:39 +00:00
|
|
|
structopt = "0.3"
|
2020-12-22 05:28:14 +00:00
|
|
|
strum = { version = "0.20", features = ["derive"] }
|
2020-10-23 02:13:17 +00:00
|
|
|
tempfile = "3"
|
2021-01-05 03:08:36 +00:00
|
|
|
thiserror = "1"
|
2020-10-15 22:14:39 +00:00
|
|
|
time = "0.2"
|
2021-01-15 05:58:16 +00:00
|
|
|
tokio = { version = "1.0", features = ["rt-multi-thread", "time", "macros", "sync"] }
|
2021-01-27 02:33:32 +00:00
|
|
|
toml = "0.5"
|
2020-10-15 22:14:39 +00: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"] }
|
2021-01-27 02:33:32 +00:00
|
|
|
url = { version = "2.1", features = ["serde"] }
|
2020-11-03 03:23:03 +00:00
|
|
|
uuid = { version = "0.8", features = ["serde", "v4"] }
|
2020-10-15 22:14:39 +00:00
|
|
|
void = "1"
|
2020-10-22 23:32:48 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-12-18 00:54:13 +00:00
|
|
|
get-port = "3"
|
2021-01-15 05:58:16 +00:00
|
|
|
hyper = "0.14"
|
2020-10-22 23:32:48 +00:00
|
|
|
port_check = "0.1"
|
2021-01-05 03:08:36 +00:00
|
|
|
serde_cbor = "0.11"
|
2020-10-22 23:32:48 +00:00
|
|
|
spectral = "0.6"
|
|
|
|
tempfile = "3"
|
2020-11-03 00:56:13 +00:00
|
|
|
testcontainers = "0.11"
|