2020-10-15 22:14:39 +00:00
|
|
|
[package]
|
|
|
|
name = "swap"
|
2021-09-03 04:05:48 +00:00
|
|
|
version = "0.8.3"
|
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-08-12 06:40:52 +00:00
|
|
|
bdk = "0.10"
|
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-08-20 01:32:09 +00:00
|
|
|
comfy-table = "4.1.1"
|
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-05-25 05:27:57 +00:00
|
|
|
curve25519-dalek = { package = "curve25519-dalek-ng", version = "4" }
|
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-05-25 05:27:57 +00:00
|
|
|
ecdsa_fun = { git = "https://github.com/LLFourn/secp256kfun", default-features = false, 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-06-28 06:45:40 +00:00
|
|
|
libp2p = { git = "https://github.com/comit-network/rust-libp2p", branch = "rendezvous", default-features = false, features = [ "tcp-tokio", "yamux", "mplex", "dns-tokio", "noise", "request-response", "websocket", "ping", "rendezvous" ] }
|
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"
|
2021-05-06 23:37:10 +00:00
|
|
|
proptest = "1"
|
2021-05-30 11:53:43 +00:00
|
|
|
qrcode = "0.12"
|
2021-05-25 05:27:57 +00:00
|
|
|
rand = "0.8"
|
|
|
|
rand_chacha = "0.3"
|
2021-04-29 07:32:42 +00:00
|
|
|
reqwest = { version = "0.11", features = [ "rustls-tls", "stream", "socks" ], default-features = false }
|
2021-05-07 03:25:25 +00:00
|
|
|
rust_decimal = { version = "1", features = [ "serde-float" ] }
|
2021-05-07 04:44:15 +00:00
|
|
|
rust_decimal_macros = "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"
|
2021-07-06 09:17:17 +00:00
|
|
|
serde_with = { version = "1", features = [ "macros" ] }
|
2020-11-05 04:48:31 +00:00
|
|
|
sha2 = "0.9"
|
2021-05-25 05:27:57 +00:00
|
|
|
sigma_fun = { git = "https://github.com/LLFourn/secp256kfun", default-features = false, features = [ "ed25519", "serde" ] }
|
2020-10-23 02:13:17 +00:00
|
|
|
sled = "0.34"
|
2021-09-20 23:14:33 +00:00
|
|
|
sqlx = { version = "0.5", features = [ "sqlite", "runtime-tokio-rustls", "offline" ] }
|
2020-10-15 22:14:39 +00:00
|
|
|
structopt = "0.3"
|
2021-06-01 06:45:25 +00:00
|
|
|
strum = { version = "0.21", features = [ "derive" ] }
|
2021-01-05 03:08:36 +00:00
|
|
|
thiserror = "1"
|
2021-08-26 11:10:56 +00:00
|
|
|
time = "0.3"
|
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-07-12 11:09:44 +00:00
|
|
|
tokio-tungstenite = { version = "0.15", 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-09-03 11:08:32 +00:00
|
|
|
torut = { version = "0.2", default-features = false, features = [ "v3", "control" ] }
|
2021-04-29 07:32:42 +00:00
|
|
|
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" ] }
|
2021-05-10 02:03:43 +00:00
|
|
|
tracing-subscriber = { version = "0.2", default-features = false, features = [ "fmt", "ansi", "env-filter", "chrono", "tracing-log", "json" ] }
|
2021-04-29 07:32:42 +00:00
|
|
|
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]
|
2021-05-18 02:52:17 +00:00
|
|
|
tokio-tar = "0.3"
|
2021-03-01 06:34:25 +00:00
|
|
|
|
|
|
|
[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-08-12 01:28:00 +00:00
|
|
|
proptest = "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"
|
2021-07-07 07:44:49 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
vergen = { version = "5", default-features = false, features = [ "git", "build" ] }
|
|
|
|
anyhow = "1"
|