27 lines
860 B
TOML
27 lines
860 B
TOML
[package]
|
|
description = "ethereum vm builtin"
|
|
name = "ethcore-builtin"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
bn = { git = "https://github.com/paritytech/bn", default-features = false }
|
|
byteorder = "1.3.2"
|
|
eip-152 = { path = "../../util/EIP-152" }
|
|
ethereum-types = "0.4"
|
|
ethjson = { path = "../../ethjson" }
|
|
ethkey = { path = "../../accounts/ethkey" }
|
|
keccak-hash = "0.1.0"
|
|
log = "0.4"
|
|
macros = { path = "../../util/macros" }
|
|
num = { version = "0.1", default-features = false, features = ["bigint"] }
|
|
parity-bytes = "0.1"
|
|
parity-crypto = "0.4.0"
|
|
eth_pairings = { git = "https://github.com/matter-labs/eip1962.git", default-features = false, features = ["eip_2537"], rev = "ece6cbabc41948db4200e41f0bfdab7ab94c7af8" }
|
|
|
|
[dev-dependencies]
|
|
hex-literal = "0.2.1"
|
|
rustc-hex = "1.0"
|
|
maplit = "1.0.2"
|