b4f3c4bd7a
* Async RPC * Limiting number of transactions in queue * Fixing tests * Bumping serde and jsonrpc-core * serde updated to 0.8 * fixed failing tests * Bumping ipc server * Fixing API for endpoints * Experimenting with tests without --release mode
21 lines
463 B
TOML
21 lines
463 B
TOML
[package]
|
|
name = "ethjson"
|
|
version = "0.1.0"
|
|
authors = ["debris <marek.kotewicz@gmail.com>"]
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
ethcore-util = { path = "../util" }
|
|
rustc-serialize = "0.3"
|
|
serde = "0.8"
|
|
serde_json = "0.8"
|
|
serde_macros = { version = "0.8", optional = true }
|
|
clippy = { version = "0.0.85", optional = true}
|
|
|
|
[build-dependencies]
|
|
serde_codegen = { version = "0.8", optional = true }
|
|
|
|
[features]
|
|
default = ["serde_codegen"]
|
|
nightly = ["serde_macros"]
|