[package] name = "state-sync-v1" version = "0.2.2" authors = ["Aptos Labs "] description = "Aptos state synchronizer v1 (state sync v1)" repository = "https://github.com/aptos-labs/aptos-core" homepage = "https://aptoslabs.com" license = "Apache-2.0" edition = "2018" [dependencies] async-trait = "0.1.53" bcs = "0.1.3" aptos-channel = { version = "0.2.1", path = "../../crates/channel" } fail = "0.5.0" futures = "0.3.21" itertools = { version = "0.10.0", default-features = false } once_cell = "1.10.0" proptest = { version = "1.0.0", optional = true } rand = "0.7.3" 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-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-temppath = { version = "0.2.1", path = "../../crates/aptos-temppath" } 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", optional = true } consensus-notifications = { version = "0.2.1", path = "../inter-component/consensus-notifications" } event-notifications = { version = "0.2.1", path = "../../state-sync/inter-component/event-notifications" } aptos-executor = { version = "0.2.1", path = "../../execution/executor" } executor-test-helpers = { version = "0.2.1", path = "../../execution/executor-test-helpers", optional = true } executor-types = { version = "0.2.1", path = "../../execution/executor-types" } mempool-notifications = { version = "0.2.1", path = "../inter-component/mempool-notifications" } memsocket = { version = "0.2.1", path = "../../network/memsocket", optional = true, package = "aptos-memsocket" } 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-genesis = { version = "0.2.1", path = "../../aptos-move/vm-genesis", optional = true } [dev-dependencies] bytes = "1.1.0" claim = "0.5.0" proptest = "1.0.0" aptos-crypto = { version = "0.2.1", path = "../../crates/aptos-crypto" } aptos-genesis = { version = "0.2.1", path = "../../crates/aptos-genesis", features = [ "testing" ] } aptos-mempool = { version = "0.2.1", path = "../../mempool", features = [ "fuzzing" ] } aptos-proptest-helpers = { version = "0.2.1", path = "../../crates/aptos-proptest-helpers" } aptos-time-service = { version = "0.2.1", path = "../../crates/aptos-time-service", features = [ "testing" ] } aptos-transaction-builder = { version = "0.2.1", path = "../../sdk/transaction-builder" } aptosdb = { version = "0.2.1", path = "../../storage/aptosdb" } aptos-channel = { version = "0.2.1", path = "../../crates/channel" } executor-test-helpers = { version = "0.2.1", path = "../../execution/executor-test-helpers" } memsocket = { version = "0.2.1", path = "../../network/memsocket", package = "aptos-memsocket" } move-deps = { version = "0.2.1", path = "../../aptos-move/move-deps", features = [ "address32" ] } aptos-network = { version = "0.2.1", path = "../../network", features = [ "fuzzing", "testing" ] } network-builder = { version = "0.2.1", path = "../../network/builder" } vm-genesis = { version = "0.2.1", path = "../../aptos-move/vm-genesis", features = [ "fuzzing" ] } [features] default = [] failpoints = ["fail/failpoints"] fuzzing = [ "vm-genesis", "proptest", "executor-test-helpers", "aptos-config/fuzzing", "aptos-mempool/fuzzing", "aptos-types/fuzzing", "aptos-proptest-helpers", "memsocket/fuzzing" ]