mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2024-10-01 01:45:40 -04:00
5a3675a06f
This commit updates the rust-toolchain to the current stable version 1.59, and fixes a number of new clippy warnings from that change. Other changes: - updates backoff to 0.4 - updates swap to 2021 edition - updates comfy-table to 5.0 - updates monero-wallet to 2021 edition - updates moneor-harness to 2021 edition - updates bdk and rust_decimal - updates tokio-util to 0.7 - updates workflow to use actions/setup-python@3 - updates pem and serde_with - adds stable rust toolchain notice to readme
23 lines
555 B
TOML
23 lines
555 B
TOML
[package]
|
|
name = "monero-rpc"
|
|
version = "0.1.0"
|
|
authors = [ "CoBloX Team <team@coblox.tech>" ]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
curve25519-dalek = "3.1"
|
|
hex = "0.4"
|
|
jsonrpc_client = { version = "0.7", features = [ "reqwest" ] }
|
|
monero = "0.12"
|
|
monero-epee-bin-serde = "1"
|
|
rand = "0.7"
|
|
reqwest = { version = "0.11", default-features = false, features = [ "json" ] }
|
|
serde = { version = "1.0", features = [ "derive" ] }
|
|
serde_json = "1.0"
|
|
tracing = "0.1"
|
|
|
|
[dev-dependencies]
|
|
hex-literal = "0.3"
|
|
tokio = { version = "1", features = [ "full" ] }
|