mirror of
https://github.com/mimblewimble/grin.git
synced 2025-01-21 03:21:08 +03:00
eb11b14cab
Remove some unused import and add missing docs.
18 lines
609 B
TOML
18 lines
609 B
TOML
[package]
|
|
name = "grin_store"
|
|
version = "0.1.0"
|
|
authors = ["Ignotus Peverell <igno.peverell@protonmail.com>"]
|
|
workspace = ".."
|
|
|
|
[dependencies]
|
|
byteorder = "^0.5"
|
|
rocksdb = "^0.6.0"
|
|
## When using GCC 7, the rust-rocksdb dependency doesn't compile
|
|
## To get around this (temporarily) clone (beside the 'grin' directory)
|
|
## https://github.com/spacejam/rust-rocksdb.git
|
|
## Manually apply the changes in:
|
|
## https://github.com/facebook/rocksdb/commit/816c1e30ca73615c75fc208ddcc4b05012b30951
|
|
## And swap the dependency for the one below
|
|
#rocksdb = { path = "../../rust-rocksdb" }
|
|
|
|
grin_core = { path = "../core" }
|