Add a new component called `plot`. It provides a low-level approach to data analysis and visualization. Chart is a collection of ready-to-use chart components built with `plot`. | Light | Dark | | - | - | | <img width="1712" alt="SCR-20250604-qhxb" src="https://github.com/user-attachments/assets/bf7ce76e-ab7a-42c2-92e7-17cd135de66f" /> | <img width="1712" alt="SCR-20250604-qhxr" src="https://github.com/user-attachments/assets/dd3e44ea-bbb5-41a2-8cce-38b316d7d800" /> |
8 lines
193 B
Rust
8 lines
193 B
Rust
use proc_macro::TokenStream;
|
|
|
|
mod derive_into_plot;
|
|
|
|
#[proc_macro_derive(IntoPlot)]
|
|
pub fn derive_into_plot(input: TokenStream) -> TokenStream {
|
|
derive_into_plot::derive_into_plot(input)
|
|
}
|