[package] name = "storage-interface" version = "0.2.7" authors = ["Aptos Labs "] description = "Aptos storage interface" repository = "https://github.com/aptos-labs/aptos-core" homepage = "https://aptoslabs.com" license = "Apache-2.0" edition = "2018" [dependencies] anyhow = "1.0.57" assert_unordered = "0.1.1" bcs = "0.1.3" crossbeam-channel = "0.5.4" once_cell = "1.10.0" parking_lot = "0.12.0" rayon = "1.5.2" serde = { version = "1.0.137", default-features = false } thiserror = "1.0.31" aptos-crypto = { version = "0.2.1", path = "../../crates/aptos-crypto" } aptos-metrics-core = { version = "0.2.1", path = "../../crates/aptos-metrics-core" } aptos-secure-net = { version = "0.2.1", path = "../../secure/net" } aptos-state-view = { version = "0.2.1", path = "../state-view" } aptos-types = { version = "0.2.1", path = "../../types" } aptos-vm = { version = "0.2.1", path = "../../aptos-move/aptos-vm" } move-deps = { version = "0.2.1", path = "../../aptos-move/move-deps", features = [ "address32" ] } aptos-scratchpad = { version = "0.2.1", path = "../scratchpad" } [features] default = [] fuzzing = ["aptos-types/fuzzing"]