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-09-21 00:32:03 +00:00
|
|
|
proptest = ["cuprate-types/proptest"]
|
2023-12-14 15:39:16 +00:00
|
|
|
rayon = ["dep:rayon"]
|
|
|
|
|
|
|
|
[dependencies]
|
2024-10-24 22:12:30 +00:00
|
|
|
cuprate-constants = { workspace = true, default-features = false, features = ["block"] }
|
|
|
|
cuprate-helper = { workspace = true, default-features = false, features = ["std", "cast"] }
|
|
|
|
cuprate-types = { workspace = true, default-features = false }
|
|
|
|
cuprate-cryptonight = { workspace = true }
|
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-09-21 00:32:03 +00:00
|
|
|
cfg-if = { workspace = true }
|
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 }
|
|
|
|
|
2023-12-17 03:13:30 +00:00
|
|
|
[dev-dependencies]
|
2024-09-21 00:32:03 +00:00
|
|
|
proptest = { workspace = true }
|
|
|
|
proptest-derive = { workspace = true }
|
|
|
|
tokio = { version = "1.35.0", features = ["rt-multi-thread", "macros"] }
|
|
|
|
|
|
|
|
[lints]
|
2024-09-22 18:34:20 +00:00
|
|
|
workspace = true
|