mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2024-10-31 15:20:15 +00:00
471baf7c49
This is fairly bare-bones for now and only contains one piece of functionality: choosing random key offsets. More functionality for actually signing Monero transactions will be added later.
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 = "2018"
|
|
|
|
[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.12"
|
|
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" ] }
|