gguppy/
lib.rs

1//! Implementation of the grammar of graphics in Rust.
2// TODO: clean up errors in doctest
3// #![doc = include_str!("../README.md")]
4#![warn(missing_docs)]
5#![no_std]
6
7#[cfg(feature = "std")]
8extern crate std;
9
10mod gguppy;
11pub mod prelude;
12
13// pub use crate::gguppy::*;
14
15#[doc(inline)]
16pub use arwggplot;
17#[doc(inline)]
18pub use gguppy_core as ggcore;
19#[doc(inline)]
20pub use gguppy_data as ggdata;