99271db9d3
* Use parity-crypto updated to use upstream rust-secp256k1 * Fetch dependency from git * Missed a session ID * Add free-standing inversion function that uses `libsecp256k1` * fixed tests * Update deps * Use parity-crypto 0.5.0 Use libsecp256k1 0.3.5 * Review grumble Co-authored-by: Svyatoslav Nikolsky <svyatonik@gmail.com>
24 lines
684 B
TOML
24 lines
684 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"
|
|
common-types = { path = "../types" }
|
|
eip-152 = { path = "../../util/EIP-152" }
|
|
ethereum-types = "0.8.0"
|
|
ethjson = { path = "../../json" }
|
|
keccak-hash = "0.4.0"
|
|
log = "0.4"
|
|
num = { version = "0.1", default-features = false, features = ["bigint"] }
|
|
parity-bytes = "0.1"
|
|
parity-crypto = { version = "0.5.0", features = ["publickey"] }
|
|
|
|
[dev-dependencies]
|
|
hex-literal = "0.2.1"
|
|
macros = { path = "../../util/macros" }
|