acorn_lib/lib.rs
1//! # 🌱 ACORN Library
2//! > "Plant an ACORN and grow your research"
3//!
4//! `acorn-lib` is a one-stop-shop for everything related to building and maintaining research activity data (RAD)-related technology, including the Accessible Content Optimization for Research Needs (ACORN) tool.
5//! The modules, structs, enums and constants found here support the ACORN CLI, which checks, analyzes, and exports research activity data into useable formats.
6//!
7#[cfg(feature = "analyzer")]
8pub mod analyzer;
9#[cfg(feature = "std")]
10pub mod bucket;
11#[cfg(feature = "doctor")]
12pub mod doctor;
13#[cfg(feature = "std")]
14pub mod io;
15#[cfg(feature = "powerpoint")]
16pub mod powerpoint;
17pub mod prelude;
18pub mod schema;
19#[cfg(feature = "util")]
20pub mod util;