toml_input/
lib.rs

1pub mod block;
2pub mod comment;
3pub mod config;
4pub mod error;
5pub mod schema;
6pub mod section;
7mod toml_input;
8pub use toml_input::*;
9pub mod util;
10mod value;
11pub use value::*;
12mod content;
13pub use content::*;
14
15pub use error::Error;
16pub use schema::Schema;
17pub use toml_input_derive::TomlInput;
18
19const TAG: &str = ".";
20const ROOT_KEY: &str = "";
21const COMMENT: &str = "#";
22const BANG_COMMENT: &str = "#!";
23
24use toml::Value as TomlValue;