2024-08-16 01:23:18 +00:00
|
|
|
[package]
|
|
|
|
name = "cuprated"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
description = "The Cuprate Monero Rust node."
|
|
|
|
license = "AGPL-3.0-only"
|
|
|
|
authors = ["Boog900", "hinto-janai", "SyntheticBird45"]
|
|
|
|
repository = "https://github.com/Cuprate/cuprate/tree/main/binaries/cuprated"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-08-20 15:39:23 +00:00
|
|
|
cuprate-consensus = { path = "../../consensus" }
|
|
|
|
cuprate-blockchain = { path = "../../storage/blockchain" }
|
|
|
|
cuprate-p2p = { path = "../../p2p/p2p" }
|
|
|
|
cuprate-p2p-core = { path = "../../p2p/p2p-core" }
|
|
|
|
cuprate-types = { path = "../../types" }
|
|
|
|
|
|
|
|
rayon = { workspace = true }
|
|
|
|
futures = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
|
|
|
tower = { workspace = true }
|
|
|
|
tracing = { workspace = true }
|
|
|
|
thiserror = { workspace = true }
|
|
|
|
hex = { workspace = true }
|
2024-08-16 01:23:18 +00:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|