2024-06-09 13:24:44 +00:00
|
|
|
[package]
|
|
|
|
name = "cuprate-fast-sync"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
license = "MIT"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "cuprate-fast-sync-create-hashes"
|
|
|
|
path = "src/create.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
clap = { workspace = true, features = ["derive", "std"] }
|
|
|
|
cuprate-blockchain = { path = "../../storage/cuprate-blockchain" }
|
2024-06-14 22:00:18 +00:00
|
|
|
cuprate-consensus = { path = ".." }
|
|
|
|
cuprate-consensus-rules = { path = "../rules" }
|
2024-06-09 13:24:44 +00:00
|
|
|
cuprate-types = { path = "../../types" }
|
|
|
|
hex.workspace = true
|
|
|
|
hex-literal.workspace = true
|
2024-06-14 22:00:18 +00:00
|
|
|
monero-serai.workspace = true
|
2024-06-09 13:24:44 +00:00
|
|
|
rayon.workspace = true
|
|
|
|
sha3 = "0.10.8"
|
2024-06-14 22:00:18 +00:00
|
|
|
thiserror.workspace = true
|
2024-06-09 13:24:44 +00:00
|
|
|
tokio = { workspace = true, features = ["full"] }
|
|
|
|
tower.workspace = true
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tokio-test = "0.4.4"
|