1564fae011
* Allow setting the panic hook with parity-clib * Make all FFI functions unsafe * Fix comment * Fix concern
19 lines
421 B
TOML
19 lines
421 B
TOML
[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]
|
|
panic_hook = { path = "../util/panic_hook" }
|
|
parity-ethereum = { path = "../", default-features = false }
|
|
|
|
[features]
|
|
default = []
|
|
final = ["parity-ethereum/final"]
|