28 lines
735 B
TOML
28 lines
735 B
TOML
[package]
|
|
description = "Ethcore stratum lib"
|
|
name = "ethcore-stratum"
|
|
version = "1.4.0"
|
|
license = "GPL-3.0"
|
|
authors = ["Ethcore <admin@ethcore.io>"]
|
|
build = "build.rs"
|
|
|
|
[build-dependencies]
|
|
ethcore-ipc-codegen = { path = "../ipc/codegen" }
|
|
|
|
[dependencies]
|
|
log = "0.3"
|
|
jsonrpc-core = { git = "https://github.com/ethcore/jsonrpc.git" }
|
|
jsonrpc-tcp-server = { git = "https://github.com/ethcore/jsonrpc.git" }
|
|
mio = { git = "https://github.com/ethcore/mio", branch = "v0.5.x" }
|
|
ethcore-util = { path = "../util" }
|
|
ethcore-devtools = { path = "../devtools" }
|
|
lazy_static = "0.2"
|
|
env_logger = "0.3"
|
|
ethcore-ipc = { path = "../ipc/rpc" }
|
|
semver = "0.2"
|
|
ethcore-ipc-nano = { path = "../ipc/nano" }
|
|
|
|
[profile.release]
|
|
debug = true
|
|
lto = false
|