ac3de4c5fc
* Parity as a library * Fix concerns * Allow using a null on_client_restart_cb * Fix more concerns * Test the C library in test.sh * Reduce CMake version to 3.5 * Move the clib test before cargo test * Add println in test
18 lines
358 B
TOML
18 lines
358 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]
|
|
parity = { path = "../", default-features = false }
|
|
|
|
[features]
|
|
default = []
|
|
final = ["parity/final"]
|