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]
|
2024-09-21 00:32:03 +00:00
|
|
|
cuprate-blockchain = { path = "../../storage/blockchain" }
|
|
|
|
cuprate-consensus = { path = ".." }
|
2024-06-14 22:00:18 +00:00
|
|
|
cuprate-consensus-rules = { path = "../rules" }
|
2024-09-21 00:32:03 +00:00
|
|
|
cuprate-types = { path = "../../types" }
|
|
|
|
cuprate-helper = { path = "../../helper", features = ["cast"] }
|
|
|
|
|
|
|
|
clap = { workspace = true, features = ["derive", "std"] }
|
|
|
|
hex = { workspace = true }
|
|
|
|
hex-literal = { workspace = true }
|
|
|
|
monero-serai = { workspace = true }
|
|
|
|
sha3 = { version = "0.10.8" }
|
|
|
|
thiserror = { workspace = true }
|
|
|
|
tokio = { workspace = true, features = ["full"] }
|
|
|
|
tower = { workspace = true }
|
2024-06-09 13:24:44 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-09-21 00:32:03 +00:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|