[package]
edition = "2024"
rust-version = "1.85"
name = "millipede-storage-memory"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "In-memory StorageClient implementation for the Millipede web crawler."
readme = "README.md"
keywords = [
"crawler",
"storage",
"queue",
]
categories = [
"web-programming",
"asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/satvik007/millipede"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "millipede_storage_memory"
path = "src/lib.rs"
[[test]]
name = "auto_saved"
path = "tests/auto_saved.rs"
[[test]]
name = "client"
path = "tests/client.rs"
[[test]]
name = "dataset"
path = "tests/dataset.rs"
[[test]]
name = "kvs"
path = "tests/kvs.rs"
[[test]]
name = "queue"
path = "tests/queue.rs"
[[test]]
name = "queue_concurrency"
path = "tests/queue_concurrency.rs"
[[test]]
name = "statistics_persist"
path = "tests/statistics_persist.rs"
[[bench]]
name = "queue_ops"
path = "benches/queue_ops.rs"
harness = false
[dependencies.async-trait]
version = "0.1"
[dependencies.bytes]
version = "1"
features = ["serde"]
[dependencies.futures-util]
version = "0.3"
[dependencies.millipede-core]
version = "0.1.0"
[dependencies.serde_json]
version = "1"
[dependencies.time]
version = "0.3"
features = [
"serde",
"serde-well-known",
"macros",
"formatting",
"parsing",
]
[dependencies.tokio]
version = "1"
features = ["full"]
[dev-dependencies.criterion]
version = "0.5"
features = ["async_tokio"]
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
await_holding_lock = "deny"
[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(tokio_unstable)"]