oku_fs/lib.rs
1#![doc = include_str!("../README.md")]
2// #![feature(doc_auto_cfg)]
3#![warn(missing_docs)]
4
5/// Configuration of an Oku file system node.
6pub(crate) mod config;
7/// Database used by the Oku file system.
8pub mod database;
9/// Content discovery and retrieval.
10pub mod discovery;
11/// Errors originating in the Oku file system implementation.
12pub mod error;
13/// An instance of an Oku file system.
14pub mod fs;
15#[cfg(feature = "fuse")]
16/// FUSE implementation.
17pub mod fuse;
18
19#[cfg(feature = "fuse")]
20pub use fuser;
21pub use iroh;
22pub use iroh_base;
23pub use iroh_blobs;
24pub use iroh_docs;
25pub use iroh_gossip;