mirror of
https://github.com/serai-dex/serai.git
synced 2024-12-25 21:19:35 +00:00
7d2d739042
* Rename the coins folder to networks Ethereum isn't a coin. It's a network. Resolves #357. * More renames of coins -> networks in orchestration * Correct paths in tests/ * cargo fmt
32 lines
1.2 KiB
TOML
32 lines
1.2 KiB
TOML
[package]
|
|
name = "monero-serai-verify-chain"
|
|
version = "0.1.0"
|
|
description = "A binary to deserialize and verify the Monero blockchain"
|
|
license = "MIT"
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/networks/monero/verify-chain"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
edition = "2021"
|
|
rust-version = "1.79"
|
|
publish = false
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
rand_core = { version = "0.6", default-features = false, features = ["std"] }
|
|
|
|
curve25519-dalek = { version = "4", default-features = false, features = ["alloc", "zeroize"] }
|
|
|
|
hex = { version = "0.4", default-features = false, features = ["std"] }
|
|
serde = { version = "1", default-features = false, features = ["derive", "alloc", "std"] }
|
|
serde_json = { version = "1", default-features = false, features = ["alloc", "std"] }
|
|
|
|
monero-serai = { path = "..", default-features = false, features = ["std", "compile-time-generators"] }
|
|
monero-rpc = { path = "../rpc", default-features = false, features = ["std"] }
|
|
monero-simple-request-rpc = { path = "../rpc/simple-request", default-features = false }
|
|
|
|
tokio = { version = "1", default-features = false, features = ["rt-multi-thread", "macros"] }
|