mirror of
https://github.com/mimblewimble/grin.git
synced 2025-01-21 03:21:08 +03:00
4c34c9ab52
* adding file position index data accessable to the chain, and allowing for storage of such within db * missing file * restart files at last recorded position in stored file metadata * just use tip to store last pmmr index information * error handling * test fix
21 lines
521 B
TOML
21 lines
521 B
TOML
[package]
|
|
name = "grin_store"
|
|
version = "0.1.0"
|
|
authors = ["Ignotus Peverell <igno.peverell@protonmail.com>"]
|
|
workspace = ".."
|
|
|
|
[dependencies]
|
|
byteorder = "^1.0"
|
|
env_logger="^0.3.5"
|
|
serde = "~1.0.8"
|
|
serde_derive = "~1.0.8"
|
|
slog = { version = "^2.0.12", features = ["max_level_trace", "release_max_level_trace"] }
|
|
libc = "^0.2"
|
|
memmap = { git = "https://github.com/danburkert/memmap-rs", tag="0.6.0" }
|
|
rocksdb = "^0.8.0"
|
|
|
|
grin_core = { path = "../core" }
|
|
grin_util = { path = "../util" }
|
|
|
|
[dev-dependencies]
|
|
time = "^0.1"
|