starchart_backends/
lib.rs

1#![warn(
2	clippy::pedantic,
3	clippy::nursery,
4	clippy::suspicious,
5	clippy::str_to_string,
6	clippy::string_to_string,
7	missing_copy_implementations,
8	missing_docs
9)]
10#![deny(clippy::all)]
11#![allow(clippy::module_name_repetitions, clippy::no_effect_underscore_binding)]
12#![cfg_attr(
13	docsrs,
14	feature(doc_auto_cfg, doc_cfg),
15	deny(rustdoc::broken_intra_doc_links)
16)]
17#![cfg_attr(not(test), warn(clippy::panic_in_result_fn))]
18//! All the basic backends for the starchart crate
19
20#[cfg(feature = "fs")]
21pub mod fs;
22#[cfg(feature = "memory")]
23pub mod memory;
24#[cfg(test)]
25pub(crate) mod testing;