cuprate/consensus/rules/Cargo.toml

38 lines
1.2 KiB
TOML
Raw Normal View History

[package]
name = "cuprate-consensus-rules"
version = "0.1.0"
edition = "2021"
2024-02-29 20:29:11 +00:00
license = "MIT"
authors = ["Boog900"]
[features]
default = []
proptest = ["dep:proptest", "dep:proptest-derive", "cuprate-types/proptest"]
rayon = ["dep:rayon"]
[dependencies]
2024-01-22 01:56:34 +00:00
cuprate-helper = { path = "../../helper", default-features = false, features = ["std"] }
cuprate-types = { path = "../../types", default-features = false }
cuprate-cryptonight = {path = "../../cryptonight"}
2024-01-21 14:46:03 +00:00
monero-serai = { workspace = true, features = ["std"] }
curve25519-dalek = { workspace = true, features = ["alloc", "zeroize", "precomputed-tables"] }
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 }
crypto-bigint = { workspace = true }
2024-01-21 14:46:03 +00:00
tracing = { workspace = true, features = ["std"] }
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"]}