2021-02-21 20:32:15 -05:00
|
|
|
[package]
|
|
|
|
name = "monero-rpc"
|
|
|
|
version = "0.1.0"
|
2021-04-29 03:32:42 -04:00
|
|
|
authors = [ "CoBloX Team <team@coblox.tech>" ]
|
2022-03-12 06:05:36 -05:00
|
|
|
edition = "2021"
|
2021-02-21 20:32:15 -05:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1"
|
2021-04-28 23:43:03 -04:00
|
|
|
curve25519-dalek = "3.1"
|
|
|
|
hex = "0.4"
|
2021-08-20 04:23:08 -04:00
|
|
|
jsonrpc_client = { version = "0.7", features = [ "reqwest" ] }
|
2021-04-28 23:43:03 -04:00
|
|
|
monero = "0.12"
|
|
|
|
monero-epee-bin-serde = "1"
|
|
|
|
rand = "0.7"
|
2021-04-29 03:32:42 -04:00
|
|
|
reqwest = { version = "0.11", default-features = false, features = [ "json" ] }
|
2022-11-07 02:52:34 -05:00
|
|
|
rust_decimal = { version = "1", features = [ "serde-float" ] }
|
2021-04-29 03:32:42 -04:00
|
|
|
serde = { version = "1.0", features = [ "derive" ] }
|
2021-02-21 20:32:15 -05:00
|
|
|
serde_json = "1.0"
|
|
|
|
tracing = "0.1"
|
2021-04-28 23:43:03 -04:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-04-18 07:58:22 -04:00
|
|
|
hex-literal = "0.4"
|
2021-04-28 23:43:03 -04:00
|
|
|
tokio = { version = "1", features = [ "full" ] }
|