[package] name = "state-sync-multiplexer" version = "0.2.2" authors = ["Aptos Labs "] repository = "https://github.com/aptos-labs/aptos-core" description = "A multiplexer supporting several different state sync versions" homepage = "https://aptoslabs.com" license = "Apache-2.0" edition = "2018" [dependencies] futures = "0.3.21" tokio = { version = "1.18.2", features = ["full"] } aptos-config = { version = "0.2.1", path = "../../../config" } aptos-data-client = { version = "0.2.1", path = "../../aptos-data-client" } aptos-types = { version = "0.2.1", path = "../../../types" } consensus-notifications = { version = "0.2.1", path = "../../../state-sync/inter-component/consensus-notifications" } data-streaming-service = { version = "0.2.1", path = "../data-streaming-service" } event-notifications = { version = "0.2.1", path = "../../../state-sync/inter-component/event-notifications" } executor-types = { version = "0.2.1", path = "../../../execution/executor-types" } mempool-notifications = { version = "0.2.1", path = "../../../state-sync/inter-component/mempool-notifications" } network = { version = "0.2.1", path = "../../../network", package = "aptos-network" } state-sync-driver = { version = "0.2.1", path = "../../../state-sync/state-sync-v2/state-sync-driver" } state-sync-v1 = { version = "0.2.1", path = "../../../state-sync/state-sync-v1" } storage-interface = { version = "0.2.1", path = "../../../storage/storage-interface" } [dev-dependencies] 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-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-executor = { version = "0.2.1", path = "../../../execution/executor" } executor-test-helpers = { version = "0.2.1", path = "../../../execution/executor-test-helpers" } mempool-notifications = { version = "0.2.1", path = "../../../state-sync/inter-component/mempool-notifications" } storage-service-client = { version = "0.2.1", path = "../../storage-service/client" }