···2727serde_bytes = "0.11"
2828serde_ipld_dagcbor = "0.6.1"
2929serde_json = "1.0.134"
3030+sled = "0.34.7"
3031tokio = { version = "1.42.0", features = ["full"] }
3132tokio-postgres = { version = "0.7.12", features = ["with-chrono-0_4"] }
3233tokio-stream = "0.1.17"
+2
consumer/src/config.rs
···2323 /// DIDs of label services to force subscription to.
2424 #[serde(default)]
2525 pub initial_label_services: Vec<String>,
2626+ /// Where to store the resume information for labels and indexer only.
2727+ pub resume_path: Option<String>,
26282729 /// Configuration items specific to indexer
2830 pub indexer: Option<IndexerConfig>,