[package] name = "executor-benchmark" version = "0.2.7" authors = ["Aptos Labs "] 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.2.1", path = "../../config" } aptos-crypto = { version = "0.2.1", path = "../../crates/aptos-crypto" } aptos-genesis = { version = "0.2.1", path = "../../crates/aptos-genesis", features = [ "testing" ] } aptos-infallible = { version = "0.2.1", path = "../../crates/aptos-infallible" } aptos-jellyfish-merkle = { version = "0.2.1", path = "../../storage/jellyfish-merkle" } aptos-logger = { version = "0.2.1", path = "../../crates/aptos-logger" } aptos-sdk = { version = "0.2.1", path = "../../sdk" } aptos-secure-push-metrics = { version = "0.2.1", path = "../../secure/push-metrics" } aptos-state-view = { version = "0.2.1", path = "../../storage/state-view" } aptos-transaction-builder = { version = "0.2.1", path = "../../sdk/transaction-builder" } aptos-types = { version = "0.2.1", path = "../../types" } aptos-vm = { version = "0.2.1", path = "../../aptos-move/aptos-vm" } aptosdb = { version = "0.2.1", path = "../../storage/aptosdb" } aptos-executor = { version = "0.2.1", path = "../executor" } executor-types = { version = "0.2.1", path = "../executor-types" } schemadb = { version = "0.2.1", path = "../../storage/schemadb" } scratchpad = { version = "0.2.1", path = "../../storage/scratchpad", package = "aptos-scratchpad" } storage-interface = { version = "0.2.1", path = "../../storage/storage-interface" } [dev-dependencies] aptos-temppath = { version = "0.2.1", path = "../../crates/aptos-temppath" } [features] default = [] fuzzing = [ "aptos-config/fuzzing", "aptos-crypto/fuzzing", "aptos-types/fuzzing" ] [[bench]] name = "executor_benchmark" harness = false