2020-09-28 06:18:50 +00:00
|
|
|
[package]
|
|
|
|
name = "xmr-btc"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["CoBloX Team <team@coblox.tech>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
2020-10-22 03:49:55 +00:00
|
|
|
# TODO: Check for stale dependencies, this looks like its a bit of a mess.
|
|
|
|
|
2020-09-28 06:18:50 +00:00
|
|
|
[dependencies]
|
|
|
|
anyhow = "1"
|
|
|
|
async-trait = "0.1"
|
2020-10-13 22:32:25 +00:00
|
|
|
bitcoin = { version = "0.23", features = ["rand", "serde"] }
|
2020-10-22 00:19:43 +00:00
|
|
|
cross-curve-dleq = { git = "https://github.com/comit-network/cross-curve-dleq", rev = "1931c0436f259e1a1f53a4ec8acbbaaf614bd1e4", features = ["serde"] }
|
2020-09-28 06:18:50 +00:00
|
|
|
curve25519-dalek = "2"
|
2020-10-13 22:32:25 +00:00
|
|
|
ecdsa_fun = { git = "https://github.com/LLFourn/secp256kfun", rev = "510d48ef6a2b19805f7f5c70c598e5b03f668e7a", features = ["libsecp_compat", "serde", "serialization"] }
|
|
|
|
ed25519-dalek = { version = "1.0.0-pre.4", features = ["serde"] }# Cannot be 1 because they depend on curve25519-dalek version 3
|
2020-10-15 07:34:55 +00:00
|
|
|
futures = "0.3"
|
2020-10-12 06:17:22 +00:00
|
|
|
genawaiter = "0.99.1"
|
2020-10-13 22:32:25 +00:00
|
|
|
miniscript = { version = "1", features = ["serde"] }
|
|
|
|
monero = { version = "0.9", features = ["serde_support"] }
|
2020-09-28 06:18:50 +00:00
|
|
|
rand = "0.7"
|
2020-10-13 22:32:25 +00:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2020-09-28 06:18:50 +00:00
|
|
|
sha2 = "0.9"
|
|
|
|
thiserror = "1"
|
2020-10-22 23:32:48 +00:00
|
|
|
tokio = { version = "0.2", default-features = false, features = ["time"] }
|
2020-09-29 05:36:50 +00:00
|
|
|
tracing = "0.1"
|
2020-09-28 06:18:50 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-10-15 02:10:31 +00:00
|
|
|
backoff = { version = "0.2", features = ["tokio"] }
|
2020-09-28 06:18:50 +00:00
|
|
|
base64 = "0.12"
|
2020-10-21 23:57:42 +00:00
|
|
|
bitcoin-harness = { git = "https://github.com/coblox/bitcoin-harness-rs", rev = "7ff30a559ab57cc3aa71189e71433ef6b2a6c3a2" }
|
2020-10-08 05:07:49 +00:00
|
|
|
futures = "0.3"
|
2020-09-28 06:18:50 +00:00
|
|
|
monero-harness = { path = "../monero-harness" }
|
|
|
|
reqwest = { version = "0.10", default-features = false }
|
2020-10-13 22:32:25 +00:00
|
|
|
serde_cbor = "0.11"
|
2020-10-21 06:53:49 +00:00
|
|
|
tempfile = "3"
|
2020-09-28 06:18:50 +00:00
|
|
|
testcontainers = "0.10"
|
2020-09-29 05:36:50 +00:00
|
|
|
tracing = "0.1"
|
2020-10-08 05:07:49 +00:00
|
|
|
tracing-subscriber = "0.2"
|