2024-08-20 22:56:18 +00:00
|
|
|
[package]
|
|
|
|
name = "cuprated"
|
2024-09-28 00:41:34 +00:00
|
|
|
version = "0.0.1"
|
2024-08-20 22:56:18 +00:00
|
|
|
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-09-08 14:52:17 +00:00
|
|
|
# TODO: after v1.0.0, remove unneeded dependencies.
|
2024-10-24 22:12:30 +00:00
|
|
|
cuprate-consensus = { workspace = true }
|
|
|
|
cuprate-fast-sync = { workspace = true }
|
|
|
|
cuprate-consensus-context = { workspace = true }
|
|
|
|
cuprate-consensus-rules = { workspace = true }
|
|
|
|
cuprate-cryptonight = { workspace = true }
|
2024-10-26 19:55:10 +00:00
|
|
|
cuprate-helper = { workspace = true, features = ["serde"] }
|
2024-10-24 22:12:30 +00:00
|
|
|
cuprate-epee-encoding = { workspace = true }
|
|
|
|
cuprate-fixed-bytes = { workspace = true }
|
|
|
|
cuprate-levin = { workspace = true }
|
|
|
|
cuprate-wire = { workspace = true }
|
2024-10-26 19:55:10 +00:00
|
|
|
cuprate-p2p = { workspace = true, features = ["serde"] }
|
|
|
|
cuprate-p2p-core = { workspace = true, features = ["serde"] }
|
2024-10-24 22:12:30 +00:00
|
|
|
cuprate-dandelion-tower = { workspace = true }
|
|
|
|
cuprate-async-buffer = { workspace = true }
|
2024-10-26 19:55:10 +00:00
|
|
|
cuprate-address-book = { workspace = true, features = ["serde_config"] }
|
2024-10-24 22:12:30 +00:00
|
|
|
cuprate-blockchain = { workspace = true, features = ["service"] }
|
2024-10-26 19:55:10 +00:00
|
|
|
cuprate-database-service = { workspace = true, features = ["serde"] }
|
2024-10-24 22:12:30 +00:00
|
|
|
cuprate-txpool = { workspace = true }
|
2024-10-26 19:55:10 +00:00
|
|
|
cuprate-database = { workspace = true, features = ["serde"] }
|
2024-10-24 22:12:30 +00:00
|
|
|
cuprate-pruning = { workspace = true }
|
|
|
|
cuprate-test-utils = { workspace = true }
|
|
|
|
cuprate-types = { workspace = true }
|
|
|
|
cuprate-json-rpc = { workspace = true }
|
|
|
|
cuprate-rpc-interface = { workspace = true }
|
|
|
|
cuprate-rpc-types = { workspace = true }
|
2024-09-08 14:52:17 +00:00
|
|
|
|
|
|
|
# TODO: after v1.0.0, remove unneeded dependencies.
|
|
|
|
anyhow = { workspace = true }
|
|
|
|
async-trait = { workspace = true }
|
|
|
|
bitflags = { workspace = true }
|
|
|
|
borsh = { workspace = true }
|
|
|
|
bytemuck = { workspace = true }
|
|
|
|
bytes = { workspace = true }
|
|
|
|
cfg-if = { workspace = true }
|
2024-09-28 00:41:34 +00:00
|
|
|
clap = { workspace = true, features = ["cargo"] }
|
2024-09-08 14:52:17 +00:00
|
|
|
chrono = { workspace = true }
|
|
|
|
crypto-bigint = { workspace = true }
|
|
|
|
crossbeam = { workspace = true }
|
|
|
|
curve25519-dalek = { workspace = true }
|
2024-09-28 00:41:34 +00:00
|
|
|
const_format = { workspace = true }
|
2024-09-08 14:52:17 +00:00
|
|
|
dashmap = { workspace = true }
|
|
|
|
dirs = { workspace = true }
|
|
|
|
futures = { workspace = true }
|
|
|
|
hex = { workspace = true }
|
|
|
|
hex-literal = { workspace = true }
|
|
|
|
indexmap = { workspace = true }
|
|
|
|
monero-serai = { workspace = true }
|
|
|
|
paste = { workspace = true }
|
|
|
|
pin-project = { workspace = true }
|
|
|
|
randomx-rs = { workspace = true }
|
|
|
|
rand = { workspace = true }
|
|
|
|
rand_distr = { workspace = true }
|
|
|
|
rayon = { workspace = true }
|
|
|
|
serde_bytes = { workspace = true }
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
serde = { workspace = true }
|
|
|
|
thiserror = { workspace = true }
|
|
|
|
thread_local = { workspace = true }
|
|
|
|
tokio-util = { workspace = true }
|
|
|
|
tokio-stream = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
|
|
|
tower = { workspace = true }
|
2024-10-08 17:26:07 +00:00
|
|
|
tracing-subscriber = { workspace = true, features = ["std", "fmt", "default"] }
|
2024-10-17 19:49:55 +00:00
|
|
|
tracing = { workspace = true, features = ["default"] }
|
|
|
|
toml = "0.8"
|
2024-08-20 22:56:18 +00:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|