mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2024-10-31 15:20:15 +00:00
41 lines
1.5 KiB
TOML
41 lines
1.5 KiB
TOML
[package]
|
|
name = "xmr-btc"
|
|
version = "0.1.0"
|
|
authors = ["CoBloX Team <team@coblox.tech>"]
|
|
edition = "2018"
|
|
|
|
# TODO: Check for stale dependencies, this looks like its a bit of a mess.
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
async-trait = "0.1"
|
|
bitcoin = { version = "0.25", features = ["rand", "serde"] }
|
|
conquer-once = "0.3"
|
|
cross-curve-dleq = { git = "https://github.com/comit-network/cross-curve-dleq", rev = "eddcdea1d1f16fa33ef581d1744014ece535c920", features = ["serde"] }
|
|
curve25519-dalek = "2"
|
|
ecdsa_fun = { git = "https://github.com/LLFourn/secp256kfun", rev = "cdfbc766045ea678a41780919d6228dd5acee3be", features = ["libsecp_compat", "serde"] }
|
|
ed25519-dalek = { version = "1.0.0-pre.4", features = ["serde"] }# Cannot be 1 because they depend on curve25519-dalek version 3
|
|
futures = "0.3"
|
|
genawaiter = "0.99.1"
|
|
miniscript = { version = "4", features = ["serde"] }
|
|
monero = { version = "0.9", features = ["serde_support"] }
|
|
rand = "0.7"
|
|
serde = { version = "1", features = ["derive"] }
|
|
sha2 = "0.9"
|
|
thiserror = "1"
|
|
tokio = { version = "0.2", default-features = false, features = ["time"] }
|
|
tracing = "0.1"
|
|
|
|
[dev-dependencies]
|
|
backoff = { version = "0.2", features = ["tokio"] }
|
|
base64 = "0.12"
|
|
bitcoin-harness = { git = "https://github.com/coblox/bitcoin-harness-rs", rev = "864b55fcba2e770105f135781dd2e3002c503d12" }
|
|
futures = "0.3"
|
|
monero-harness = { path = "../monero-harness" }
|
|
reqwest = { version = "0.10", default-features = false }
|
|
serde_cbor = "0.11"
|
|
tempfile = "3"
|
|
testcontainers = "0.11"
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.2"
|