executor-benchmark 0.1.6

Aptos executor benchmark
Documentation
[package]
name = "executor-benchmark"
version = "0.1.6"
authors = ["Aptos Labs <opensource@aptoslabs.com>"]
description = "Aptos executor benchmark"
repository = "https://github.com/aptos-labs/aptos-core"
homepage = "https://aptoslabs.com"
license = "Apache-2.0"
edition = "2018"

[dependencies]
chrono = "0.4.19"
criterion = "0.3.5"
indicatif = "0.15.0"
jemallocator = { version = "0.3.2", features = [
    "profiling",
    "unprefixed_malloc_on_supported_platforms"
] }
itertools = "0.10.3"
num_cpus = "1.13.1"
rand = "0.7.3"
rayon = "1.5.2"
serde = "1.0.137"
structopt = "0.3.21"
toml = "0.5.9"
aptos-config = { version = "0.1.0", path = "../../config" }
aptos-crypto = { version = "0.1.0", path = "../../crates/aptos-crypto" }
aptos-genesis = { version = "0.1.0", path = "../../crates/aptos-genesis", features = [
    "testing"
] }
aptos-infallible = { version = "0.1.0", path = "../../crates/aptos-infallible" }
aptos-jellyfish-merkle = { version = "0.1.0", path = "../../storage/jellyfish-merkle" }
aptos-logger = { version = "0.1.0", path = "../../crates/aptos-logger" }
aptos-sdk = { version = "0.1.0", path = "../../sdk" }
aptos-secure-push-metrics = { version = "0.1.0", path = "../../secure/push-metrics" }
aptos-state-view = { version = "0.1.0", path = "../../storage/state-view" }
aptos-transaction-builder = { version = "0.1.0", path = "../../sdk/transaction-builder" }
aptos-types = { version = "0.1.0", path = "../../types" }
aptos-vm = { version = "0.1.0", path = "../../aptos-move/aptos-vm" }
aptosdb = { version = "0.1.0", path = "../../storage/aptosdb" }
aptos-executor = { version = "0.1.0", path = "../executor" }
executor-types = { version = "0.1.0", path = "../executor-types" }
schemadb = { version = "0.1.0", path = "../../storage/schemadb" }
scratchpad = { version = "0.1.0", path = "../../storage/scratchpad", package = "aptos-scratchpad" }
storage-interface = { version = "0.1.0", path = "../../storage/storage-interface" }

[dev-dependencies]
aptos-temppath = { version = "0.1.0", path = "../../crates/aptos-temppath" }

[features]
default = []
fuzzing = [
    "aptos-config/fuzzing",
    "aptos-crypto/fuzzing",
    "aptos-types/fuzzing"
]

[[bench]]
name = "executor_benchmark"
harness = false