mirror of
https://github.com/Cuprate/cuprate.git
synced 2025-01-08 20:09:44 +00:00
25 lines
889 B
TOML
25 lines
889 B
TOML
|
[package]
|
||
|
name = "cuprate-consensus-context"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
license = "MIT"
|
||
|
authors = ["SyntheticBird","Boog900"]
|
||
|
|
||
|
[dependencies]
|
||
|
cuprate-consensus-rules = { path = "../rules", features = ["proptest"]}
|
||
|
cuprate-helper = { path = "../../helper", default-features = false, features = ["std", "cast"] }
|
||
|
cuprate-types = { path = "../../types", default-features = false }
|
||
|
|
||
|
futures = { workspace = true, features = ["std", "async-await"] }
|
||
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros"]}
|
||
|
tokio-util = { workspace = true }
|
||
|
tower = { workspace = true, features = ["util"] }
|
||
|
tracing = { workspace = true, features = ["std", "attributes"] }
|
||
|
thiserror = { workspace = true }
|
||
|
|
||
|
monero-serai = { workspace = true, features = ["std"] }
|
||
|
randomx-rs = { workspace = true }
|
||
|
rayon = { workspace = true }
|
||
|
thread_local = { workspace = true }
|
||
|
hex = { workspace = true }
|