c9c8f920d2
* initial native contract generator * get generated code compiling * unit tests for type codegen * autogenerate registry contract * native_contracts entry for registry * service_transaction_checker * fixed indentation
16 lines
365 B
TOML
16 lines
365 B
TOML
[package]
|
|
name = "native-contracts"
|
|
description = "Generated Rust code for Ethereum contract ABIs"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
ethabi = "1.0"
|
|
futures = "0.1"
|
|
byteorder = "1.0"
|
|
ethcore-util = { path = "../../util" }
|
|
|
|
[build-dependencies]
|
|
native-contract-generator = { path = "generator" }
|