2020-10-15 18:14:39 -04:00
|
|
|
[package]
|
|
|
|
name = "swap"
|
2022-08-11 08:42:06 -04:00
|
|
|
version = "0.11.0"
|
2021-04-29 03:32:42 -04:00
|
|
|
authors = [ "The COMIT guys <hello@comit.network>" ]
|
2022-03-12 06:05:36 -05:00
|
|
|
edition = "2021"
|
2020-10-15 18:14:39 -04:00
|
|
|
description = "XMR/BTC trustless atomic swaps."
|
|
|
|
|
2021-02-04 00:42:14 -05:00
|
|
|
[lib]
|
|
|
|
name = "swap"
|
|
|
|
|
2020-10-15 18:14:39 -04:00
|
|
|
[dependencies]
|
|
|
|
anyhow = "1"
|
2021-04-29 03:32:42 -04:00
|
|
|
async-compression = { version = "0.3", features = [ "bzip2", "tokio" ] }
|
2020-11-30 23:38:24 -05:00
|
|
|
async-trait = "0.1"
|
2020-10-15 18:14:39 -04:00
|
|
|
atty = "0.2"
|
2022-03-12 06:05:36 -05:00
|
|
|
backoff = { version = "0.4", features = [ "tokio" ] }
|
2021-03-17 03:53:32 -04:00
|
|
|
base64 = "0.13"
|
2022-11-22 08:39:42 -05:00
|
|
|
bdk = "0.24"
|
2021-02-28 19:46:53 -05:00
|
|
|
big-bytes = "1"
|
2022-11-22 08:39:42 -05:00
|
|
|
bitcoin = { version = "0.29", features = [ "rand", "serde" ] }
|
2021-03-29 18:59:51 -04:00
|
|
|
bmrng = "0.5"
|
2022-09-14 07:36:33 -04:00
|
|
|
comfy-table = "6.1"
|
2021-04-29 03:32:42 -04:00
|
|
|
config = { version = "0.11", default-features = false, features = [ "toml" ] }
|
2020-11-25 00:27:57 -05:00
|
|
|
conquer-once = "0.3"
|
2021-05-25 01:27:57 -04:00
|
|
|
curve25519-dalek = { package = "curve25519-dalek-ng", version = "4" }
|
2021-04-21 21:33:36 -04:00
|
|
|
data-encoding = "2.3"
|
2022-02-22 23:58:05 -05:00
|
|
|
dialoguer = "0.10"
|
2021-01-26 21:33:32 -05:00
|
|
|
directories-next = "2"
|
2022-08-27 06:26:55 -04:00
|
|
|
ecdsa_fun = { git = "https://github.com/LLFourn/secp256kfun", default-features = false, features = [ "libsecp_compat", "serde", "adaptor" ] }
|
2021-04-22 02:03:12 -04:00
|
|
|
ed25519-dalek = "1"
|
2020-10-15 18:14:39 -04:00
|
|
|
futures = { version = "0.3", default-features = false }
|
2021-10-06 03:58:13 -04:00
|
|
|
hex = "0.4"
|
2021-03-26 00:16:19 -04:00
|
|
|
itertools = "0.10"
|
2022-04-04 06:49:02 -04:00
|
|
|
libp2p = { version = "0.42.2", default-features = false, features = [ "tcp-tokio", "yamux", "mplex", "dns-tokio", "noise", "request-response", "websocket", "ping", "rendezvous", "identify" ] }
|
2021-04-28 23:43:03 -04:00
|
|
|
monero = { version = "0.12", features = [ "serde_support" ] }
|
2021-02-21 20:32:15 -05:00
|
|
|
monero-rpc = { path = "../monero-rpc" }
|
2022-07-28 09:33:27 -04:00
|
|
|
pem = "1.1"
|
2021-05-06 19:37:10 -04:00
|
|
|
proptest = "1"
|
2021-05-30 07:53:43 -04:00
|
|
|
qrcode = "0.12"
|
2021-05-25 01:27:57 -04:00
|
|
|
rand = "0.8"
|
|
|
|
rand_chacha = "0.3"
|
2021-04-29 03:32:42 -04:00
|
|
|
reqwest = { version = "0.11", features = [ "rustls-tls", "stream", "socks" ], default-features = false }
|
2021-05-06 23:25:25 -04:00
|
|
|
rust_decimal = { version = "1", features = [ "serde-float" ] }
|
2021-05-07 00:44:15 -04:00
|
|
|
rust_decimal_macros = "1"
|
2021-04-29 03:32:42 -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_json = "1"
|
2021-07-06 05:17:17 -04:00
|
|
|
serde_with = { version = "1", features = [ "macros" ] }
|
2022-08-27 06:26:55 -04:00
|
|
|
sha2 = "0.10"
|
|
|
|
sigma_fun = { git = "https://github.com/LLFourn/secp256kfun", default-features = false, features = [ "ed25519", "serde", "secp256k1", "alloc" ] }
|
2022-11-30 06:39:20 -05:00
|
|
|
sqlx = { version = "0.6", features = [ "sqlite", "runtime-tokio-rustls", "offline" ] }
|
2020-10-15 18:14:39 -04:00
|
|
|
structopt = "0.3"
|
2022-04-13 08:09:59 -04:00
|
|
|
strum = { version = "0.24", features = [ "derive" ] }
|
2021-01-04 22:08:36 -05:00
|
|
|
thiserror = "1"
|
2021-08-26 07:10:56 -04:00
|
|
|
time = "0.3"
|
2021-04-29 03:32:42 -04:00
|
|
|
tokio = { version = "1", features = [ "rt-multi-thread", "time", "macros", "sync", "process", "fs", "net" ] }
|
2021-04-21 21:33:36 -04:00
|
|
|
tokio-socks = "0.5"
|
2021-07-12 07:09:44 -04:00
|
|
|
tokio-tungstenite = { version = "0.15", features = [ "rustls-tls" ] }
|
2022-03-12 06:05:36 -05:00
|
|
|
tokio-util = { version = "0.7", features = [ "io", "codec" ] }
|
2021-01-26 21:33:32 -05:00
|
|
|
toml = "0.5"
|
2021-09-03 07:08:32 -04:00
|
|
|
torut = { version = "0.2", default-features = false, features = [ "v3", "control" ] }
|
2021-04-29 03:32:42 -04:00
|
|
|
tracing = { version = "0.1", features = [ "attributes" ] }
|
2022-07-26 08:08:55 -04:00
|
|
|
tracing-appender = "0.2"
|
2021-04-29 03:32:42 -04:00
|
|
|
tracing-futures = { version = "0.2", features = [ "std-future", "futures-03" ] }
|
2022-07-26 08:08:55 -04:00
|
|
|
tracing-subscriber = { version = "0.3", default-features = false, features = [ "fmt", "ansi", "env-filter", "time", "tracing-log", "json" ] }
|
2021-04-29 03:32:42 -04:00
|
|
|
url = { version = "2", features = [ "serde" ] }
|
2022-10-08 00:34:38 -04:00
|
|
|
uuid = { version = "1.2", features = [ "serde", "v4" ] }
|
2020-10-15 18:14:39 -04:00
|
|
|
void = "1"
|
2020-10-22 19:32:48 -04:00
|
|
|
|
2021-03-01 01:34:25 -05:00
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
2021-05-17 22:52:17 -04:00
|
|
|
tokio-tar = "0.3"
|
2021-03-01 01:34:25 -05:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
zip = "0.5"
|
|
|
|
|
2020-10-22 19:32:48 -04:00
|
|
|
[dev-dependencies]
|
2022-11-22 08:39:42 -05:00
|
|
|
bitcoin-harness = "0.2.2"
|
2020-12-17 19:54:13 -05:00
|
|
|
get-port = "3"
|
2021-01-15 00:58:16 -05:00
|
|
|
hyper = "0.14"
|
2021-02-21 20:32:15 -05:00
|
|
|
monero-harness = { path = "../monero-harness" }
|
2020-10-22 19:32:48 -04:00
|
|
|
port_check = "0.1"
|
2021-08-11 21:28:00 -04:00
|
|
|
proptest = "1"
|
2021-01-04 22:08:36 -05:00
|
|
|
serde_cbor = "0.11"
|
2020-10-22 19:32:48 -04:00
|
|
|
spectral = "0.6"
|
|
|
|
tempfile = "3"
|
2021-02-16 01:09:09 -05:00
|
|
|
testcontainers = "0.12"
|
2021-07-07 03:44:49 -04:00
|
|
|
|
|
|
|
[build-dependencies]
|
2022-04-16 08:13:23 -04:00
|
|
|
vergen = { version = "7", default-features = false, features = [ "git", "build" ] }
|
2021-07-07 03:44:49 -04:00
|
|
|
anyhow = "1"
|