From ead2695d781a56816130428c8c8039c9f2f3fb82 Mon Sep 17 00:00:00 2001 From: Chris Joel <0xcda7a@gmail.com> Date: Fri, 30 Jun 2023 18:05:59 -0700 Subject: [PATCH] feat: Featureful documentation --- rust/noosphere-storage/src/lib.rs | 3 ++- rust/noosphere/src/noosphere.rs | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/rust/noosphere-storage/src/lib.rs b/rust/noosphere-storage/src/lib.rs index 13a69a720..34ea6b44d 100644 --- a/rust/noosphere-storage/src/lib.rs +++ b/rust/noosphere-storage/src/lib.rs @@ -1,6 +1,7 @@ //! This crate contains generic interfaces and concrete implementations to //! support a common API for data persistance in Noosphere on many different -//! platforms. +//! platforms. Current platforms include native targets (via disk-persisted K/V +//! store) and web browsers (via IndexedDB). #[macro_use] extern crate tracing; diff --git a/rust/noosphere/src/noosphere.rs b/rust/noosphere/src/noosphere.rs index 2224a66e2..6541330f5 100644 --- a/rust/noosphere/src/noosphere.rs +++ b/rust/noosphere/src/noosphere.rs @@ -1,3 +1,5 @@ +//! A high-level, batteries-included API for Noosphere embedders + use anyhow::{anyhow, Result}; use noosphere_core::{authority::Authorization, data::Did}; use std::{collections::BTreeMap, path::PathBuf, sync::Arc};