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 mod util;
9mod value;
10
11pub use error::Error;
12pub use schema::Schema;
13pub use toml_input::*;
14pub use toml_input_derive::TomlInput;
15pub use value::Value;
16pub use value::*;
17
18const TAG: &str = ".";
19const ROOT_KEY: &str = "";
20const COMMENT: &str = "#";
21const BANG_COMMENT: &str = "#!";
22
23use toml::Value as TomlValue;