2023-09-03 22:50:38 +00:00
|
|
|
[package]
|
2023-12-14 15:39:16 +00:00
|
|
|
name = "cuprate-consensus"
|
2023-09-03 22:50:38 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2024-02-15 16:03:04 +00:00
|
|
|
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-10-24 22:12:30 +00:00
|
|
|
cuprate-helper = { workspace = true, default-features = false, features = ["std", "asynch", "num"] }
|
|
|
|
cuprate-consensus-rules = { workspace = true, features = ["rayon"] }
|
|
|
|
cuprate-types = { workspace = true }
|
|
|
|
cuprate-consensus-context = { workspace = true }
|
2023-12-16 23:03:02 +00:00
|
|
|
|
2024-09-21 00:32:03 +00:00
|
|
|
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"] }
|
2024-05-31 00:52:12 +00:00
|
|
|
futures = { workspace = true, features = ["std", "async-await"] }
|
2023-09-03 22:50:38 +00:00
|
|
|
|
2024-01-21 14:46:03 +00:00
|
|
|
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 }
|
2023-10-23 18:14:40 +00:00
|
|
|
|
2024-05-31 00:52:12 +00:00
|
|
|
hex = { workspace = true }
|
2024-07-29 00:13:08 +00:00
|
|
|
rand = { workspace = true }
|
2023-10-28 23:39:22 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-10-24 22:12:30 +00:00
|
|
|
cuprate-test-utils = { workspace = true }
|
|
|
|
cuprate-consensus-rules = { workspace = true, features = ["proptest"]}
|
2024-05-31 00:52:12 +00:00
|
|
|
|
|
|
|
hex-literal = { workspace = true }
|
2024-09-21 00:32:03 +00:00
|
|
|
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"]}
|
2024-07-29 00:13:08 +00:00
|
|
|
tokio-test = { workspace = true }
|
2024-01-21 14:46:03 +00:00
|
|
|
proptest = { workspace = true }
|
2024-09-21 00:32:03 +00:00
|
|
|
proptest-derive = { workspace = true }
|
|
|
|
|
|
|
|
[lints]
|
2024-10-16 23:17:58 +00:00
|
|
|
workspace = true
|