e8b418ca03
* Bump version. * Fix RPC crate. * Fix BoxFuture in crates. * Compiles and passes tests! * Get rid of .boxed() * Fixing issues with the UI. * Remove minihttp. Support threads. * Reimplement files serving to do it in chunks. * Increase chunk size. * Remove some unecessary copying. * Fix tests. * Fix stratum warning and ipfs todo. * Switch to proper branch of jsonrpc. * Update Cargo.lock. * Update docs. * Include dapps-glue in workspace. * fixed merge artifacts * Fix test compilation.
28 lines
919 B
TOML
28 lines
919 B
TOML
[package]
|
|
description = "Ethcore stratum lib"
|
|
name = "ethcore-stratum"
|
|
version = "1.8.0"
|
|
license = "GPL-3.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
build = "build.rs"
|
|
|
|
[build-dependencies]
|
|
ethcore-ipc-codegen = { path = "../ipc/codegen" }
|
|
|
|
[dependencies]
|
|
log = "0.3"
|
|
jsonrpc-core = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-1.8" }
|
|
jsonrpc-macros = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-1.8" }
|
|
jsonrpc-tcp-server = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-1.8" }
|
|
ethcore-util = { path = "../util" }
|
|
ethcore-bigint = { path = "../util/bigint" }
|
|
ethcore-devtools = { path = "../devtools" }
|
|
env_logger = "0.4"
|
|
ethcore-ipc = { path = "../ipc/rpc" }
|
|
ethcore-ipc-nano = { path = "../ipc/nano" }
|
|
tokio-core = "0.1"
|
|
tokio-io = "0.1"
|
|
parking_lot = "0.4"
|
|
ethcore-logger = { path = "../logger" }
|
|
hash = { path = "../util/hash" }
|