cuprate/consensus/rules/Cargo.toml

30 lines
660 B
TOML
Raw Normal View History

[package]
name = "monero-consensus"
version = "0.1.0"
edition = "2021"
[features]
default = []
proptest = ["dep:proptest", "dep:proptest-derive"]
rayon = ["dep:rayon"]
[dependencies]
cryptonight-cuprate = {path = "../../cryptonight"}
cuprate-common = {path = "../../common"}
monero-serai = { workspace = true }
curve25519-dalek = { workspace = true }
hex = "0.4"
primitive-types = { version = "0.12.2", default-features = false }
tracing = { workspace = true }
thiserror = { workspace = true }
rayon = { workspace = true, optional = true }
# Testing
proptest = {workspace = true, optional = true}
proptest-derive = {workspace = true, optional = true}