2020-10-15 22:14:39 +00:00
|
|
|
[package]
|
|
|
|
name = "swap"
|
2021-04-17 07:23:09 +00:00
|
|
|
version = "0.5.0"
|
2021-04-29 07:32:42 +00:00
|
|
|
authors = [ "The COMIT guys <hello@comit.network>" ]
|
2020-10-15 22:14:39 +00:00
|
|
|
edition = "2018"
|
|
|
|
description = "XMR/BTC trustless atomic swaps."
|
|
|
|
|
2021-02-04 05:42:14 +00:00
|
|
|
[lib]
|
|
|
|
name = "swap"
|
|
|
|
|
2020-10-15 22:14:39 +00:00
|
|
|
[dependencies]
|
|
|
|
anyhow = "1"
|
2021-04-29 07:32:42 +00:00
|
|
|
async-compression = { version = "0.3", features = [ "bzip2", "tokio" ] }
|
2020-12-01 04:38:24 +00:00
|
|
|
async-trait = "0.1"
|
2020-10-15 22:14:39 +00:00
|
|
|
atty = "0.2"
|
2021-04-29 07:32:42 +00:00
|
|
|
backoff = { version = "0.3", features = [ "tokio" ] }
|
2021-03-17 07:53:32 +00:00
|
|
|
base64 = "0.13"
|
2021-04-19 00:14:14 +00:00
|
|
|
bdk = "0.6"
|
2021-03-01 00:46:53 +00:00
|
|
|
big-bytes = "1"
|
2021-04-29 07:32:42 +00:00
|
|
|
bitcoin = { version = "0.26", features = [ "rand", "use-serde" ] }
|
2021-03-29 22:59:51 +00:00
|
|
|
bmrng = "0.5"
|
2021-04-29 07:32:42 +00:00
|
|
|
config = { version = "0.11", default-features = false, features = [ "toml" ] }
|
2020-11-25 05:27:57 +00:00
|
|
|
conquer-once = "0.3"
|
2021-02-18 02:33:50 +00:00
|
|
|
curve25519-dalek = "3"
|
2021-04-22 01:33:36 +00:00
|
|
|
data-encoding = "2.3"
|
2021-03-17 07:53:12 +00:00
|
|
|
dialoguer = "0.8"
|
2021-01-27 02:33:32 +00:00
|
|
|
directories-next = "2"
|
2021-04-29 07:32:42 +00:00
|
|
|
ecdsa_fun = { git = "https://github.com/LLFourn/secp256kfun", features = [ "libsecp_compat", "serde" ] }
|
2021-04-22 06:03:12 +00:00
|
|
|
ed25519-dalek = "1"
|
2020-10-15 22:14:39 +00:00
|
|
|
futures = { version = "0.3", default-features = false }
|
2021-03-26 04:16:19 +00:00
|
|
|
itertools = "0.10"
|
2021-04-29 07:32:42 +00:00
|
|
|
libp2p = { version = "0.37", default-features = false, features = [ "tcp-tokio", "yamux", "mplex", "dns-tokio", "noise", "request-response", "websocket" ] }
|
2021-03-18 04:30:09 +00:00
|
|
|
libp2p-async-await = { git = "https://github.com/comit-network/rust-libp2p-async-await" }
|
2021-04-29 07:32:42 +00:00
|
|
|
miniscript = { version = "5", features = [ "serde" ] }
|
2021-04-29 03:43:03 +00:00
|
|
|
monero = { version = "0.12", features = [ "serde_support" ] }
|
2021-02-22 01:32:15 +00:00
|
|
|
monero-rpc = { path = "../monero-rpc" }
|
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-03-18 04:30:09 +00:00
|
|
|
rand_chacha = "0.2"
|
2021-04-29 07:32:42 +00:00
|
|
|
reqwest = { version = "0.11", features = [ "rustls-tls", "stream", "socks" ], default-features = false }
|
2021-03-18 04:30:09 +00:00
|
|
|
rust_decimal = "1"
|
2021-04-29 07:32:42 +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_json = "1"
|
2020-11-05 04:48:31 +00:00
|
|
|
sha2 = "0.9"
|
2021-04-29 07:32:42 +00:00
|
|
|
sigma_fun = { git = "https://github.com/LLFourn/secp256kfun", features = [ "ed25519", "serde" ] }
|
2020-10-23 02:13:17 +00:00
|
|
|
sled = "0.34"
|
2020-10-15 22:14:39 +00:00
|
|
|
structopt = "0.3"
|
2021-04-29 07:32:42 +00:00
|
|
|
strum = { version = "0.20", features = [ "derive" ] }
|
2021-01-05 03:08:36 +00:00
|
|
|
thiserror = "1"
|
2020-10-15 22:14:39 +00:00
|
|
|
time = "0.2"
|
2021-04-29 07:32:42 +00:00
|
|
|
tokio = { version = "1", features = [ "rt-multi-thread", "time", "macros", "sync", "process", "fs", "net" ] }
|
2021-04-22 01:33:36 +00:00
|
|
|
tokio-socks = "0.5"
|
2021-03-15 02:59:14 +00:00
|
|
|
tokio-tungstenite = { version = "0.14", features = [ "rustls-tls" ] }
|
2021-04-29 07:32:42 +00:00
|
|
|
tokio-util = { version = "0.6", features = [ "io" ] }
|
2021-01-27 02:33:32 +00:00
|
|
|
toml = "0.5"
|
2021-04-29 07:32:42 +00:00
|
|
|
torut = { version = "0.1", default-features = false, features = [ "v3", "control" ] }
|
|
|
|
tracing = { version = "0.1", features = [ "attributes" ] }
|
2021-04-02 07:22:51 +00:00
|
|
|
tracing-appender = "0.1"
|
2021-04-29 07:32:42 +00:00
|
|
|
tracing-futures = { version = "0.2", features = [ "std-future", "futures-03" ] }
|
|
|
|
tracing-subscriber = { version = "0.2", default-features = false, features = [ "fmt", "ansi", "env-filter", "chrono", "tracing-log" ] }
|
|
|
|
url = { version = "2", features = [ "serde" ] }
|
|
|
|
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
|
|
|
|
2021-03-01 06:34:25 +00:00
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
|
|
|
tokio-tar = { path = "../tokio-tar" }
|
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
zip = "0.5"
|
|
|
|
|
2020-10-22 23:32:48 +00:00
|
|
|
[dev-dependencies]
|
2021-03-30 07:26:39 +00:00
|
|
|
bdk-testutils = { version = "0.4" }
|
2021-02-22 01:32:15 +00:00
|
|
|
bitcoin-harness = { git = "https://github.com/coblox/bitcoin-harness-rs" }
|
2020-12-18 00:54:13 +00:00
|
|
|
get-port = "3"
|
2021-01-15 05:58:16 +00:00
|
|
|
hyper = "0.14"
|
2021-02-22 01:32:15 +00:00
|
|
|
monero-harness = { path = "../monero-harness" }
|
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"
|
2021-02-16 06:09:09 +00:00
|
|
|
testcontainers = "0.12"
|