mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2024-11-09 19:10:36 +00:00
1930540c1f
* build(deps): bump reqwest from 0.11.27 to 0.12.0 Bumps [reqwest](https://github.com/seanmonstar/reqwest) from 0.11.27 to 0.12.0. - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.27...v0.12.0) --- updated-dependencies: - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * wip * wip * ci: lock sqlx-cli install * bump reqwest to 0.12.2 * deps: reqwest to 0.12.4 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Byron Hambly <byron@hambly.dev>
20 lines
580 B
TOML
20 lines
580 B
TOML
[package]
|
|
name = "monero-wallet"
|
|
version = "0.1.0"
|
|
authors = [ "CoBloX Team <team@coblox.tech>" ]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
monero = "0.12"
|
|
monero-rpc = { path = "../monero-rpc" }
|
|
rand = "0.7"
|
|
|
|
[dev-dependencies]
|
|
curve25519-dalek = "3"
|
|
monero-harness = { path = "../monero-harness" }
|
|
rand = "0.7"
|
|
testcontainers = "0.15"
|
|
tokio = { version = "1", features = [ "rt-multi-thread", "time", "macros", "sync", "process", "fs" ] }
|
|
tracing-subscriber = { version = "0.2", default-features = false, features = [ "fmt", "ansi", "env-filter", "chrono", "tracing-log" ] }
|