[package] name = "storage-service-server" version = "0.2.7" authors = ["Aptos Labs "] description = "The Aptos storage service (server-side)" repository = "https://github.com/aptos-labs/aptos-core" homepage = "https://aptoslabs.com" license = "Apache-2.0" edition = "2018" [dependencies] bcs = "0.1.3" bytes = "1.1.0" futures = "0.3.21" lru = "0.7.5" once_cell = "1.10.0" serde = { version = "1.0.137", default-features = false } thiserror = "1.0.31" tokio = { version = "1.18.2", features = [ "rt", "macros" ], default-features = false } aptos-config = { version = "0.2.1", path = "../../../config" } 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-time-service = { version = "0.2.1", path = "../../../crates/aptos-time-service", features = [ "async" ] } aptos-types = { version = "0.2.1", path = "../../../types" } bounded-executor = { version = "0.2.1", path = "../../../crates/bounded-executor", package = "bounded-aptos-executor" } channel = { version = "0.2.1", path = "../../../crates/channel", package = "aptos-channel" } network = { version = "0.2.1", path = "../../../network", package = "aptos-network" } storage-interface = { version = "0.2.1", path = "../../../storage/storage-interface" } storage-service-types = { version = "0.2.1", path = "../types" } [dev-dependencies] anyhow = "1.0.57" claim = "0.5.0" mockall = "0.11.0" aptos-crypto = { version = "0.2.1", path = "../../../crates/aptos-crypto" } aptos-time-service = { version = "0.2.1", path = "../../../crates/aptos-time-service", features = [ "async", "testing" ] } aptos-types = { version = "0.2.1", path = "../../../types" } move-deps = { version = "0.2.1", path = "../../../aptos-move/move-deps", features = [ "address32" ] } storage-interface = { version = "0.2.1", path = "../../../storage/storage-interface" }