2021-04-12 18:55:38 -04:00
|
|
|
[package]
|
|
|
|
name = "monero-adaptor"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["CoBloX Team <team@coblox.tech>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1"
|
|
|
|
curve25519-dalek = "3"
|
|
|
|
rand = "0.7"
|
|
|
|
tiny-keccak = { version = "2", features = ["keccak"] }
|
2021-05-03 21:46:58 -04:00
|
|
|
hash_edwards_to_edwards = { git = "https://github.com/comit-network/hash_edwards_to_edwards" }
|
|
|
|
monero = "0.12"
|
2021-05-11 07:14:13 -04:00
|
|
|
hex = "0.4"
|
2021-05-11 22:05:02 -04:00
|
|
|
itertools = "0.10"
|
2021-05-03 21:46:58 -04:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-05-05 23:39:05 -04:00
|
|
|
hex = "0.4"
|
2021-05-11 10:42:30 -04:00
|
|
|
hex-literal = "0.3"
|
2021-05-03 21:46:58 -04:00
|
|
|
monero-harness = { path = "../monero-harness" }
|
|
|
|
monero-rpc = { path = "../monero-rpc" }
|
|
|
|
monero-wallet = { path = "../monero-wallet" }
|
2021-05-09 23:21:40 -04:00
|
|
|
testcontainers = "0.12"
|
2021-05-03 21:46:58 -04:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
2021-05-03 23:37:07 -04:00
|
|
|
itertools = "0.10"
|