2018-05-09 08:47:21 +02:00
|
|
|
[package]
|
|
|
|
description = "C bindings for the Parity Ethereum client"
|
|
|
|
name = "parity-clib"
|
|
|
|
version = "1.12.0"
|
|
|
|
license = "GPL-3.0"
|
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "parity"
|
|
|
|
crate-type = ["cdylib", "staticlib"]
|
|
|
|
|
|
|
|
[dependencies]
|
2019-01-02 16:49:01 +01:00
|
|
|
futures = "0.1.6"
|
2019-02-21 17:26:01 +01:00
|
|
|
jni = { version = "0.11", optional = true }
|
2018-12-28 10:33:49 +01:00
|
|
|
panic_hook = { path = "../util/panic-hook" }
|
2018-07-11 13:35:10 +02:00
|
|
|
parity-ethereum = { path = "../", default-features = false }
|
2019-01-02 16:49:01 +01:00
|
|
|
tokio = "0.1.11"
|
|
|
|
tokio-current-thread = "0.1.3"
|
2018-05-09 08:47:21 +02:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
2018-07-11 13:35:10 +02:00
|
|
|
final = ["parity-ethereum/final"]
|