mirror of
https://github.com/Cuprate/cuprate.git
synced 2024-12-22 19:49:28 +00:00
978d72b6c1
Some checks failed
Architecture mdBook / build (push) Has been cancelled
Audit / audit (push) Has been cancelled
CI / fmt (push) Has been cancelled
CI / typo (push) Has been cancelled
Doc / deploy (push) Has been cancelled
CI / ci (macos-latest, stable, bash) (push) Has been cancelled
CI / ci (ubuntu-latest, stable, bash) (push) Has been cancelled
CI / ci (windows-latest, stable-x86_64-pc-windows-gnu, msys2 {0}) (push) Has been cancelled
Deny / audit (push) Has been cancelled
Doc / build (push) Has been cancelled
Co-authored-by: Boog900 <boog900@tutanota.com>
24 lines
889 B
TOML
24 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 }
|