grin/servers/Cargo.toml

34 lines
800 B
TOML
Raw Normal View History

2016-10-21 03:06:12 +03:00
[package]
name = "grin_servers"
version = "0.2.0"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
2017-04-06 09:41:49 +03:00
workspace = ".."
publish = false
2016-10-21 03:06:12 +03:00
[dependencies]
hyper = "0.10"
itertools = "0.6"
rand = "0.3"
router = "0.5"
slog = { version = "~2.1", features = ["max_level_trace", "release_max_level_trace"] }
serde = "1"
serde_derive = "1"
serde_json = "1"
time = "0.1"
minimal stratum server (#937) * Fix issue where we have no metadata for a block (#938) when restarting node before initial sync completed * Avoid double-locking on add eviction. Fixes #936 * Fix 33c5a983 * Add support for DNS Seed (#940) * Add support for DNS Seed * Add port * Add seed.grin-tech.org * Remove duplicate IPs * minimal stratum server * Modifications for review comments. Move stratum test into its own file, move get_block() into its own rust module, use pool and chain only rather than the entire Miner object * rustfmt * cleanup * cleanup * Introduce extending_readonly to simplify a forcing and cancelling rollbacks (#945) readonly views of the txhashset * Add DNS Seed and make DNSSeed default (#942) * Add dns seed seeding type * Add grin-seed.owncrypto.de and make DNSSeed default * Add email address for each DNS Seed * [WIP] Core PMMR and API updates to support wallet restore (#950) * update pmmr to get batch of elements by insertion position * update pmmr to get batch of elements by insertion position * add api + chain calls to get traversed outputs back out * add api + chain calls to get traversed outputs back out * first pass getting wallet restore to work again with updated utxo-walking api * Update simulation.md * Fix Bus Error (core dumped) when validating fast sync txhashset (#956) This PR fixes #953 by introducing a lock for txhashet_write. It's not enough to synchronize access to in memory data, files also needs to be protected, so a general txhashset lock was introduced. * refactor grin crate into separate modules (#955) * Add total kernel offset to block api (#954) * minimal stratum server * Modifications for review comments. Move stratum test into its own file, move get_block() into its own rust module, use pool and chain only rather than the entire Miner object * rustfmt * cleanup * cleanup * Merge with grin_grin -> servers code reorg * Merge with grin_grin -> servers code reorg * add stratum server stats
2018-04-13 16:42:25 +03:00
bufstream = "~0.1"
jsonrpc-core = "~4.0"
grin_api = { path = "../api" }
grin_chain = { path = "../chain" }
2016-10-21 03:06:12 +03:00
grin_core = { path = "../core" }
grin_keychain = { path = "../keychain" }
grin_p2p = { path = "../p2p" }
grin_pool = { path = "../pool" }
grin_store = { path = "../store" }
grin_util = { path = "../util" }
grin_wallet = { path = "../wallet" }
[dev-dependencies]
blake2-rfc = "0.2"
grin_config = { path = "../config" }