This is a library for converting config files into matching source files at build time.
This library is intended to be used in a build.rs
file, so it needs to be added to [build-dependencies]
.
toml
[build-dependencies.config_struct]
version = "~0.1.0"
features = ["toml-parsing"]
By default, config_struct
is markup-language-agnostic, so include the relevant feature for whatever language your config file is written in. Choices are:
json-parsing
ron-parsing
toml-parsing
yaml-parsing
Now in your build.rs
file, add code like the following:
```rust extern crate config_struct;
fn main() { let tomlconfig = configstruct::tomlparsing::parseconfigfromfile("config.toml").unwrap(); configstruct::writeconfigmodule("src/config.rs", &tomlconfig, &Default::default()).unwrap(); } ```
This will take the following config.toml
file:
toml
name = "Config name"
... and generate the following config.rs
file:
```rust use std::borrow::Cow;
pub struct Config { pub name: Cow<'static, str>, }
pub const CONFIG: Config = Config { name: Cow::Borrowed("Config name"), }; ```