2 个版本
0.1.1 | 2023年3月19日 |
---|---|
0.1.0 | 2023年3月16日 |
42 在 #config-toml
24 每月下载量
4KB
54 行
get_config
pub fn main() {
// There should be either:
// - a file named `config.toml` in the current directory;
// - a path passed to `std::env::args().nth(1)`.
let config: Config = get_config().unwrap();
println!("{:?}", config);
}
// `Deserialize` is required by `cargo add serde --features derive`
#[derive(Debug, Clone, PartialEq, Eq, Hash, Deserialize)]
struct Config {
hello: String,
}
依赖
~0.6–1.2MB
~26K SLoC