mirror of
https://github.com/mimblewimble/grin.git
synced 2025-01-21 03:21:08 +03:00
ef304ee9c1
* WIP - add blocks header cache to store The DifficultyIter is expensive to use when validating block headers. * lru_cache * rustfmt * cleanup
26 lines
571 B
TOML
26 lines
571 B
TOML
[package]
|
|
name = "grin_chain"
|
|
version = "0.2.0"
|
|
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
|
workspace = ".."
|
|
publish = false
|
|
|
|
[dependencies]
|
|
bitflags = "1"
|
|
byteorder = "0.5"
|
|
slog = { version = "~2.1", features = ["max_level_trace", "release_max_level_trace"] }
|
|
serde = "1"
|
|
serde_derive = "1"
|
|
time = "0.1"
|
|
lru-cache = "0.1"
|
|
|
|
grin_core = { path = "../core" }
|
|
grin_keychain = { path = "../keychain" }
|
|
grin_store = { path = "../store" }
|
|
grin_util = { path = "../util" }
|
|
|
|
[dev-dependencies]
|
|
env_logger = "0.3"
|
|
rand = "0.3"
|
|
|
|
grin_pow = { path = "../pow" }
|