mirror of
https://github.com/Cuprate/cuprate.git
synced 2024-11-16 15:58:17 +00:00
Boog900
8227c28604
* update monero-serai * update monero-serai + change height to `usize` * fix merge * fix merge * fix doc * fix clippy take 2 * misc changes * move RPC imports to dev deps * handle miner txs when calculating fee * Update consensus/rules/src/blocks.rs Co-authored-by: hinto-janai <hinto.janai@protonmail.com> * Update consensus/rules/src/transactions.rs Co-authored-by: hinto-janai <hinto.janai@protonmail.com> * Update storage/blockchain/src/ops/tx.rs Co-authored-by: hinto-janai <hinto.janai@protonmail.com> * Update test-utils/src/data/free.rs Co-authored-by: hinto-janai <hinto.janai@protonmail.com> * fixes * fix clippy --------- Co-authored-by: hinto-janai <hinto.janai@protonmail.com>
41 lines
No EOL
1.3 KiB
TOML
41 lines
No EOL
1.3 KiB
TOML
[package]
|
|
name = "cuprate-consensus"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "A crate implementing all Moneros consensus rules."
|
|
license = "MIT"
|
|
authors = ["Boog900"]
|
|
repository = "https://github.com/Cuprate/cuprate/tree/main/consensus"
|
|
|
|
[dependencies]
|
|
cuprate-helper = { path = "../helper", default-features = false, features = ["std", "asynch", "num"] }
|
|
cuprate-consensus-rules = { path = "./rules", features = ["rayon"] }
|
|
cuprate-types = { path = "../types" }
|
|
|
|
thiserror = { workspace = true }
|
|
tower = { workspace = true, features = ["util"] }
|
|
tracing = { workspace = true, features = ["std", "attributes"] }
|
|
futures = { workspace = true, features = ["std", "async-await"] }
|
|
|
|
randomx-rs = { workspace = true }
|
|
monero-serai = { workspace = true, features = ["std"] }
|
|
curve25519-dalek = { workspace = true }
|
|
|
|
rayon = { workspace = true }
|
|
thread_local = { workspace = true }
|
|
tokio = { workspace = true, features = ["rt"] }
|
|
tokio-util = { workspace = true }
|
|
|
|
hex = { workspace = true }
|
|
rand = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
cuprate-test-utils = { path = "../test-utils" }
|
|
cuprate-consensus-rules = {path = "./rules", features = ["proptest"]}
|
|
|
|
hex-literal = { workspace = true }
|
|
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros"]}
|
|
tokio-test = { workspace = true }
|
|
proptest = { workspace = true }
|
|
proptest-derive = { workspace = true } |