DEPRECATED - MOVED TO https://crates.io/crates/descriptivetomlderive

Description

Convenience crate with a trait definition for use with the procedural derive macro fastpasta_toml_macro_derive.

Example

```rust use fastpastatomlmacro::TomlConfig;

[derive(TomlConfig, Default)]

pub struct CustomChecks { #[description = "Number of CRU Data Packets expected in the data"] #[example = "20, 500532"] cdps: Option, } ```

```rust let tomlstring = CustomChecks::default().tostringprettytoml(); asserteq!( tomlstring, "\

Number of CRU Data Packets expected in the data

Example: 20, 500532

cdps = None [ u32 ] # (Uncomment and set to enable this check)

" ```