mirror of
https://github.com/mimblewimble/grin.git
synced 2025-01-21 03:21:08 +03:00
8ffc0c6f8e
Builds codecs to encode and decode blocks, block headers, transactions, kernels, etc. Will be used by the store and peer-to-peer layer for serialization, but also to compute hashes. Separates out serialization from core.
17 lines
351 B
TOML
17 lines
351 B
TOML
[package]
|
|
name = "grin_store"
|
|
version = "0.1.0"
|
|
authors = ["Ignotus Peverell <igno.peverell@protonmail.com>"]
|
|
workspace = ".."
|
|
|
|
[dependencies]
|
|
tokio-io = "0.1.1"
|
|
bytes = "0.4.2"
|
|
byteorder = "^0.5"
|
|
rocksdb = "^0.6.0"
|
|
tiny-keccak = "1.1"
|
|
num-bigint = "^0.1.35"
|
|
time = "^0.1"
|
|
|
|
grin_core = { path = "../core" }
|
|
secp256k1zkp = { path = "../secp256k1zkp" }
|