2023-12-14 15:39:16 +00:00
|
|
|
[package]
|
|
|
|
name = "monero-consensus"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
proptest = ["dep:proptest", "dep:proptest-derive"]
|
|
|
|
rayon = ["dep:rayon"]
|
|
|
|
|
|
|
|
[dependencies]
|
2023-12-16 23:03:02 +00:00
|
|
|
cryptonight-cuprate = {path = "../../cryptonight"}
|
|
|
|
cuprate-common = {path = "../../common"}
|
|
|
|
|
2023-12-14 15:39:16 +00:00
|
|
|
monero-serai = { workspace = true }
|
|
|
|
curve25519-dalek = { workspace = true }
|
|
|
|
|
2023-12-16 23:03:02 +00:00
|
|
|
hex = "0.4"
|
|
|
|
primitive-types = { version = "0.12.2", default-features = false }
|
2023-12-14 15:39:16 +00:00
|
|
|
|
2023-12-16 23:03:02 +00:00
|
|
|
tracing = { workspace = true }
|
2023-12-14 15:39:16 +00:00
|
|
|
thiserror = { workspace = true }
|
|
|
|
|
|
|
|
rayon = { workspace = true, optional = true }
|
|
|
|
|
|
|
|
# Testing
|
|
|
|
proptest = {workspace = true, optional = true}
|
|
|
|
proptest-derive = {workspace = true, optional = true}
|
|
|
|
|