13729a0f7f
* [builtin]: impl new builtin type Have an enum to deserialize either a builtin of a single price or several prices * [builtin]: style cleanup * [builtin]: fix tests * [builtin]: replace boxing with wrapper enum * cleanup * fix: make it backward compatible with old builtin * fix: update chain specs * fix: revert use of `type alias` on enum The CI doesn't use the latest rust. This commit reverts that change * fix: builtin tests * fix: revert use of `type alias` on enum * [basic-authority]: update test-chainspec * fix failing tests * [builtin]: multi-prices add `info field` It might be hard to read chain specs with several activations points. This commit introduces a `info` field which may be used to write some information about the current activation such as: `Istanbul hardfork EIP-1108` or something similar. * fix: bad rebase Co-Authored-By: David <dvdplm@gmail.com> * fix(grumbles): make it backward compatible * grumbles: resolve `NOTE` * revert chain specs changes * rename test Co-Authored-By: David <dvdplm@gmail.com> * [builtin docs]: price -> Fixed price Co-Authored-By: Andronik Ordian <write@reusable.software> * [json]: address naming grumbles InnerPricing -> PricingInner PriceWithActivationAt -> PricingAt * docs: revert changes for `AltBn128ConstOperations` * [json]: usize -> u64 Use explicit types to cope with platform dependent issues for `usize` * grumble: simplify `spec_backward_compability.json` * docs: add issue link to `TODO` * [builtin]: replace `match` with `map` * [builtin]: add deprecation message `eip1108` params * nits * [json spec tests]: fix json indentation * [json docs]: fix typos * [json]: `compability layer` + deser to BTreeMap Previously we had to match `Pricing::Single` and `PricingMulti` which this fixes. It does by introducing a compability layer and into() implemenentation. In addition, I switched the deserialization to `BTreeMap` instead of `Vec`. That changes the format of the chain spec again * [json]: rename `BuiltinCombat` -> `BuiltinCompat` * Update ethcore/builtin/src/lib.rs Co-Authored-By: David <dvdplm@gmail.com> * [json builtin]: improve docs Co-Authored-By: David <dvdplm@gmail.com> * [json builtin]: improve docs Co-Authored-By: David <dvdplm@gmail.com> * chore(builtin): sort dependencies * [json builtin]: deprecate `eip1108` params * [machine]: add bench for calling builtin contract * [machine]: reduce calls to `Builtin::is_active` * [builtin]: fix nits * [json]: revert breakage of chain specs * [json builtin]: remove `eip1108` params * [chain specs]: update to new format * [machine]: revert changes * [devp2p]: revert change * [builtin]: doc nits
55 lines
1.5 KiB
TOML
55 lines
1.5 KiB
TOML
[package]
|
|
description = "Ethereum state machine"
|
|
name = "machine"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "GPL-3.0"
|
|
|
|
[[bench]]
|
|
name = "builtin_contract"
|
|
harness = false
|
|
required-features = ["test-helpers"]
|
|
|
|
[dependencies]
|
|
account-state = { path = "../account-state" }
|
|
client-traits = { path = "../client-traits" }
|
|
common-types = { path = "../types" }
|
|
crossbeam-utils = "0.6"
|
|
ethabi = "9.0.1"
|
|
ethabi-contract = "9.0.0"
|
|
ethabi-derive = "9.0.1"
|
|
ethcore-builtin = { path = "../builtin" }
|
|
ethcore-call-contract = { path = "../call-contract" }
|
|
ethcore-io = { path = "../../util/io" }
|
|
ethereum-types = "0.8.0"
|
|
# Used for tests in other crates through the `test-helpers` feature
|
|
ethjson = { path = "../../json", optional = true }
|
|
evm = { path = "../evm" }
|
|
keccak-hash = "0.4.0"
|
|
log = "0.4"
|
|
lru-cache = "0.1.2"
|
|
parity-bytes = "0.1.0"
|
|
parking_lot = "0.9"
|
|
rlp = "0.4.2"
|
|
state-db = { path = "../state-db" }
|
|
trace = { path = "../trace" }
|
|
trie-vm-factories = { path = "../trie-vm-factories" }
|
|
vm = { path = "../vm" }
|
|
|
|
[dev-dependencies]
|
|
common-types = { path = "../types", features = ["test-helpers"] }
|
|
criterion = "0.3"
|
|
ethcore = { path = "../", features = ["test-helpers"] }
|
|
ethcore-io = { path = "../../util/io" }
|
|
ethjson = { path = "../../json" }
|
|
parity-crypto = { version = "0.4.2", features = ["publickey"] }
|
|
macros = { path = "../../util/macros" }
|
|
rustc-hex = "1.0"
|
|
spec = { path = "../spec" }
|
|
tempdir = "0.3"
|
|
trace = { path = "../trace" }
|
|
|
|
[features]
|
|
test-helpers = ["ethjson"]
|