mirror of
https://github.com/serai-dex/serai.git
synced 2024-12-27 14:09:48 +00:00
47 lines
1.3 KiB
TOML
47 lines
1.3 KiB
TOML
[package]
|
|
name = "monero-rpc"
|
|
version = "0.1.0"
|
|
description = "Trait for an RPC connection to a Monero daemon, built around monero-serai"
|
|
license = "MIT"
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/networks/monero/rpc"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
edition = "2021"
|
|
rust-version = "1.80"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
std-shims = { path = "../../../common/std-shims", version = "^0.1.1", default-features = false }
|
|
|
|
thiserror = { version = "1", default-features = false, optional = true }
|
|
|
|
zeroize = { version = "^1.5", default-features = false, features = ["zeroize_derive"] }
|
|
hex = { version = "0.4", default-features = false, features = ["alloc"] }
|
|
serde = { version = "1", default-features = false, features = ["derive", "alloc"] }
|
|
serde_json = { version = "1", default-features = false, features = ["alloc"] }
|
|
|
|
curve25519-dalek = { version = "4", default-features = false, features = ["alloc", "zeroize"] }
|
|
|
|
monero-serai = { path = "..", default-features = false }
|
|
monero-address = { path = "../wallet/address", default-features = false }
|
|
|
|
[features]
|
|
std = [
|
|
"std-shims/std",
|
|
|
|
"thiserror",
|
|
|
|
"zeroize/std",
|
|
"hex/std",
|
|
"serde/std",
|
|
"serde_json/std",
|
|
|
|
"monero-serai/std",
|
|
"monero-address/std",
|
|
]
|
|
default = ["std"]
|