mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2024-10-01 01:45:40 -04:00
77fc5743a2
Upgrade bitcoin harness dependency to latest commit Upgrade backoff to fix failing tests. The previous version of backoff had a broken version of the retry function. Upgraded to a newer comit which fixes this problem. Upgrade hyper to 0.14 as the 0.13 was bringing in tokio 0.2.24 Upgraded bitcoin harness to version that uses tokio 1.0 and reqwest 0.11 Upgrade reqwest to 0.11. Reqwest 0.11 uses tokio 1.0 Upgrade libp2p to 0.34 in preparation for tokio 1.0 upgrade
23 lines
675 B
TOML
23 lines
675 B
TOML
[package]
|
|
name = "monero-harness"
|
|
version = "0.1.0"
|
|
authors = ["CoBloX Team <team@coblox.tech>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
digest_auth = "0.2.3"
|
|
futures = "0.3"
|
|
port_check = "0.1"
|
|
rand = "0.7"
|
|
reqwest = { version = "0.11", default-features = false, features = ["json", "native-tls"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
spectral = "0.6"
|
|
testcontainers = "0.11"
|
|
tokio = { version = "1.0", default-features = false, features = ["rt-multi-thread", "time", "macros"] }
|
|
tracing = "0.1"
|
|
tracing-log = "0.1"
|
|
tracing-subscriber = { version = "0.2", default-features = false, features = ["fmt", "ansi", "env-filter"] }
|
|
url = "2"
|