44bc8a08fb
* chain notify trait * replaced network service with io service * fix ethcore crate warnings * refactored network service without generic * ethcore fix * ethsync refactoring * proper linking of notify * manage network interface * rpc crate rebinding * full rewire * sync internal io service * fix deadlock * fix warnings and removed async io * sync imported message propagation * fix rpc warnings * binart warnings * test fixes * rpc mocks and tests * fix util doctest * fix message name and removed empty notifier * pointers mess & dark mode fixed * fixed sync doctest * added few warnings * fix review * new convention match * fix error unwraps * doctest fix * basic library re-layout * missing files to relayout * duplicating network config on sync level * binary serializers for config * ipc endpoint for manage * ipc endpoint for sync * handshake sorting out * sorting out the multi-interface dispatch scenario * fixing tests * fix doctest
32 lines
669 B
TOML
32 lines
669 B
TOML
[package]
|
|
description = "Ethcore blockchain sync"
|
|
name = "ethsync"
|
|
version = "1.3.0"
|
|
license = "GPL-3.0"
|
|
authors = ["Ethcore <admin@ethcore.io"]
|
|
build = "build.rs"
|
|
|
|
[lib]
|
|
|
|
[build-dependencies]
|
|
syntex = "0.33"
|
|
ethcore-ipc-codegen = { path = "../ipc/codegen" }
|
|
|
|
[dependencies]
|
|
ethcore-util = { path = "../util" }
|
|
ethcore = { path = "../ethcore" }
|
|
clippy = { version = "0.0.79", optional = true}
|
|
log = "0.3"
|
|
env_logger = "0.3"
|
|
time = "0.1.34"
|
|
rand = "0.3.13"
|
|
heapsize = "0.3"
|
|
ethcore-ipc = { path = "../ipc/rpc" }
|
|
semver = "0.2"
|
|
ethcore-ipc-nano = { path = "../ipc/nano" }
|
|
parking_lot = "0.2.6"
|
|
|
|
[features]
|
|
default = []
|
|
dev = ["clippy", "ethcore/dev", "ethcore-util/dev"]
|