state-sync-driver 0.2.7

The driver for state sync
[package]
name = "state-sync-driver"
version = "0.2.7"
authors = ["Aptos Labs <opensource@aptoslabs.com>"]
repository = "https://github.com/aptos-labs/aptos-core"
description = "The driver for state sync"
homepage = "https://aptoslabs.com"
license = "Apache-2.0"
edition = "2018"

[dependencies]
anyhow = "1.0.52"
bcs = "0.1.3"
futures = "0.3.21"
once_cell = "1.10.0"
serde = { version = "1.0.137", default-features = false }
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-data-client = { version = "0.2.1", path = "../../aptos-data-client" }
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-types = { version = "0.2.1", path = "../../../types" }
consensus-notifications = { version = "0.2.1", path = "../../inter-component/consensus-notifications" }
data-streaming-service = { version = "0.2.1", path = "../data-streaming-service" }
event-notifications = { version = "0.2.1", path = "../../inter-component/event-notifications" }
executor-types = { version = "0.2.1", path = "../../../execution/executor-types" }
mempool-notifications = { version = "0.2.1", path = "../../inter-component/mempool-notifications" }
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]
anyhow = "1.0.57"
async-trait = "0.1.53"
bcs = "0.1.3"
claim = "0.5.0"
mockall = "0.11.0"
aptos-crypto = { version = "0.2.1", path = "../../../crates/aptos-crypto" }
aptos-genesis = { version = "0.2.1", path = "../../../crates/aptos-genesis", features = [
    "testing"
] }
aptos-temppath = { version = "0.2.1", path = "../../../crates/aptos-temppath" }
aptos-time-service = { version = "0.2.1", path = "../../../crates/aptos-time-service", features = [
    "async",
    "testing"
] }
aptos-vm = { version = "0.2.1", path = "../../../aptos-move/aptos-vm" }
aptosdb = { version = "0.2.1", path = "../../../storage/aptosdb" }
aptos-channel = { version = "0.2.1", path = "../../../crates/channel" }
aptos-executor = { version = "0.2.1", path = "../../../execution/executor" }
executor-test-helpers = { version = "0.2.1", path = "../../../execution/executor-test-helpers" }
move-deps = { version = "0.2.1", path = "../../../aptos-move/move-deps", features = [
    "address32"
] }
aptos-network = { version = "0.2.1", path = "../../../network", features = [
    "fuzzing"
] }
storage-service-client = { version = "0.2.1", path = "../../storage-service/client" }
storage-service-types = { version = "0.2.1", path = "../../storage-service/types" }
vm-genesis = { version = "0.2.1", path = "../../../aptos-move/vm-genesis", features = [
    "fuzzing"
] }