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]
|
2018-08-10 11:06:30 +02:00
|
|
|
panic_hook = { path = "../util/panic_hook" }
|
2018-07-11 13:35:10 +02:00
|
|
|
parity-ethereum = { path = "../", default-features = false }
|
2018-09-05 17:17:12 +02:00
|
|
|
jni = { version = "0.10.1", optional = true }
|
2018-05-09 08:47:21 +02:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
2018-07-11 13:35:10 +02:00
|
|
|
final = ["parity-ethereum/final"]
|