mirror of
https://github.com/mimblewimble/grin.git
synced 2025-01-21 03:21:08 +03:00
5f8a0d9f1c
* Starting to refactor test, adding http post to wallet sender * Implemented ability to run servers on different ports (mostly for testing), and implemented ability to post http requests directly to receiving wallets * Adding detailed instructions on running multiple servers on the same machine * Changes to build.doc to outline server running process * Removed unwanted debug statements * WIP Local server testing framework evolution * More refactoring of server pool, checked in because there's a problem * Added server reference structure, and ability to return server references from tests cleanly * Added simulate_parallel_mining test, which puts some artificial slowdown into test mining loops, and the difficulty can currently be watched in the log * Removing the ServerRef structure placed in earlier and replaced with a ServerStats structure, that just returns relevant info about the Server state without exposing it to the world
19 lines
629 B
TOML
19 lines
629 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" }
|
|
tiny-keccak = "1.1"
|
|
|
|
grin_core = { path = "../core" }
|