[package]
name = "aptos-mempool"
version = "0.2.7"
authors = ["Aptos Labs <opensource@aptoslabs.com>"]
description = "Aptos mempool for consuming incoming transactions"
repository = "https://github.com/aptos-labs/aptos-core"
homepage = "https://aptoslabs.com"
license = "Apache-2.0"
edition = "2018"
[dependencies]
anyhow = "1.0.57"
async-trait = "0.1.53"
bcs = "0.1.3"
fail = "0.5.0"
futures = "0.3.21"
itertools = "0.10.0"
mirai-annotations = "1.12.0"
once_cell = "1.10.0"
proptest = { version = "1.0.0", optional = true }
rand = "0.7.3"
rayon = "1.5.2"
serde = { version = "1.0.137", default-features = false }
serde_json = "1.0.81"
thiserror = "1.0.31"
tokio = { version = "1.18.2", features = ["full"] }
tokio-stream = "0.1.8"
aptos-config = { version = "0.2.1", path = "../config" }
aptos-crypto = { version = "0.2.1", path = "../crates/aptos-crypto" }
aptos-infallible = { version = "0.2.1", path = "../crates/aptos-infallible" }
aptos-logger = { version = "0.2.1", path = "../crates/aptos-logger" }
aptos-metrics-core = { version = "0.2.1", path = "../crates/aptos-metrics-core" }
aptos-proptest-helpers = { version = "0.2.1", path = "../crates/aptos-proptest-helpers", optional = true }
aptos-types = { version = "0.2.1", path = "../types" }
bounded-executor = { version = "0.2.1", path = "../crates/bounded-executor", package = "bounded-aptos-executor" }
aptos-channel = { version = "0.2.1", path = "../crates/channel" }
consensus-types = { version = "0.2.1", path = "../consensus/consensus-types" }
event-notifications = { version = "0.2.1", path = "../state-sync/inter-component/event-notifications" }
mempool-notifications = { version = "0.2.1", path = "../state-sync/inter-component/mempool-notifications" }
netcore = { version = "0.2.1", path = "../network/netcore" }
aptos-network = { version = "0.2.1", path = "../network" }
short-hex-str = { version = "0.2.1", path = "../crates/short-hex-str" }
storage-interface = { version = "0.2.1", path = "../storage/storage-interface" }
vm-validator = { version = "0.2.1", path = "../vm-validator" }
[dev-dependencies]
enum_dispatch = "0.3.8"
proptest = "1.0.0"
aptos-config = { version = "0.2.1", path = "../config", features = ["fuzzing"] }
aptos-id-generator = { version = "0.2.1", path = "../crates/aptos-id-generator" }
aptos-network = { version = "0.2.1", path = "../network", features = [
"fuzzing"
] }
storage-interface = { version = "0.2.1", path = "../storage/storage-interface", features = [
"fuzzing"
] }
[features]
default = []
failpoints = ["fail/failpoints", "vm-validator/failpoints"]
fuzzing = [
"proptest",
"aptos-types/fuzzing",
"storage-interface/fuzzing",
"aptos-config/fuzzing"
]