cuprate-hinto-janai/consensus/Cargo.toml

45 lines
1.4 KiB
TOML
Raw Normal View History

2023-09-03 22:50:38 +00:00
[package]
name = "cuprate-consensus"
2023-09-03 22:50:38 +00:00
version = "0.1.0"
edition = "2021"
description = "A crate implementing all Moneros consensus rules."
2023-09-03 22:50:38 +00:00
license = "MIT"
authors = ["Boog900"]
repository = "https://github.com/Cuprate/cuprate/tree/main/consensus"
[dependencies]
2024-01-22 01:56:34 +00:00
cuprate-helper = { path = "../helper", default-features = false, features = ["std", "asynch", "num"] }
cuprate-consensus-rules = { path = "./rules", features = ["rayon"] }
cuprate-types = { path = "../types" }
cfg-if = { workspace = true }
2024-01-21 14:46:03 +00:00
thiserror = { workspace = true }
tower = { workspace = true, features = ["util"] }
tracing = { workspace = true, features = ["std", "attributes"] }
futures = { workspace = true, features = ["std", "async-await"] }
2023-09-03 22:50:38 +00:00
2024-01-21 14:46:03 +00:00
randomx-rs = { workspace = true }
monero-serai = { workspace = true, features = ["std"] }
2023-09-03 22:50:38 +00:00
2024-01-21 14:46:03 +00:00
rayon = { workspace = true }
thread_local = { workspace = true }
2024-01-22 18:17:34 +00:00
tokio = { workspace = true, features = ["rt"] }
2024-01-21 14:46:03 +00:00
tokio-util = { workspace = true }
2023-10-23 18:14:40 +00:00
hex = { workspace = true }
rand = { workspace = true }
[dev-dependencies]
cuprate-test-utils = { path = "../test-utils" }
cuprate-consensus-rules = {path = "./rules", features = ["proptest"]}
hex-literal = { workspace = true }
curve25519-dalek = { workspace = true }
2023-12-17 03:13:30 +00:00
2024-01-21 14:46:03 +00:00
tokio = { workspace = true, features = ["rt-multi-thread", "macros"]}
tokio-test = { workspace = true }
2024-01-21 14:46:03 +00:00
proptest = { workspace = true }
proptest-derive = { workspace = true }
[lints]
workspace = true