2023-12-14 15:39:16 +00:00
|
|
|
[package]
|
2024-05-31 00:52:12 +00:00
|
|
|
name = "cuprate-consensus-rules"
|
2023-12-14 15:39:16 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2024-02-29 20:29:11 +00:00
|
|
|
license = "MIT"
|
|
|
|
authors = ["Boog900"]
|
2023-12-14 15:39:16 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
2024-08-08 23:56:13 +00:00
|
|
|
proptest = ["dep:proptest", "dep:proptest-derive", "cuprate-types/proptest"]
|
2023-12-14 15:39:16 +00:00
|
|
|
rayon = ["dep:rayon"]
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-22 01:56:34 +00:00
|
|
|
cuprate-helper = { path = "../../helper", default-features = false, features = ["std"] }
|
2024-08-08 23:56:13 +00:00
|
|
|
cuprate-types = { path = "../../types", default-features = false }
|
2024-06-24 01:30:47 +00:00
|
|
|
cuprate-cryptonight = {path = "../../cryptonight"}
|
2023-12-16 23:03:02 +00:00
|
|
|
|
2024-01-21 14:46:03 +00:00
|
|
|
monero-serai = { workspace = true, features = ["std"] }
|
|
|
|
curve25519-dalek = { workspace = true, features = ["alloc", "zeroize", "precomputed-tables"] }
|
2023-12-14 15:39:16 +00:00
|
|
|
|
2024-01-22 18:17:34 +00:00
|
|
|
rand = { workspace = true, features = ["std", "std_rng"] }
|
2023-12-24 21:07:28 +00:00
|
|
|
|
2024-01-21 14:46:03 +00:00
|
|
|
hex = { workspace = true, features = ["std"] }
|
|
|
|
hex-literal = { workspace = true }
|
2024-01-21 15:18:25 +00:00
|
|
|
crypto-bigint = { workspace = true }
|
2023-12-14 15:39:16 +00:00
|
|
|
|
2024-01-21 14:46:03 +00:00
|
|
|
tracing = { workspace = true, features = ["std"] }
|
2023-12-14 15:39:16 +00:00
|
|
|
thiserror = { workspace = true }
|
|
|
|
|
|
|
|
rayon = { workspace = true, optional = true }
|
|
|
|
|
|
|
|
proptest = {workspace = true, optional = true}
|
|
|
|
proptest-derive = {workspace = true, optional = true}
|
|
|
|
|
2023-12-17 03:13:30 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
proptest = {workspace = true}
|
|
|
|
proptest-derive = {workspace = true}
|
|
|
|
tokio = {version = "1.35.0", features = ["rt-multi-thread", "macros"]}
|