2个版本
0.1.1 | 2021年12月22日 |
---|---|
0.1.0 | 2021年12月22日 |
#510 in 配置
用于 企鹅应用程序
7KB
75 行
企鹅配置
企鹅配置简化了使用 serde 和 serde_json 创建配置文件的过程。
依赖项
Cargo.toml
[dependencies]
serde = "1.0"
penguin-config = "0.1.1"
用法
window_config.json
{ "width": 640, "height": 400 }
使用 derive 宏
生成配置文件
use penguin_config::*;
// the PenguinConfigGenerate macro will use the std::ops::Default implementation of the struct
#[derive(Serialize, PenguinConfigGenerate, Default)]
#[penguin_config(path = "window_config.json")]
struct WindowConfig {
width: u32,
height: u32,
}
fn generate_config() {
WindowConfig::generate_penguin_config_file();
}
读取配置文件
use penguin_config::*;
#[derive(Deserialize, PenguinConfigFile)]
#[penguin_config(path = "window_config.json")]
struct WindowConfig {
width: u32,
height: u32,
}
fn read_config() {
let config = WindowConfig::read_config();
assert_eq!(config.width, 640);
assert_eq!(config.height, 400);
}
使用特质
生成配置文件
use penguin_config::*;
#[derive(Serialize)]
struct WindowConfig {
width: u32,
height: u32,
}
impl PenguinConfigGenerate for WindowConfig {
fn generate_penguin_config_file() {
let config = WindowConfig { width: 640, height: 400 };
Serializer::file_path("window_config.json").serialize(&config);
}
}
读取配置文件
use penguin_config::*;
#[derive(Deserialize)]
struct WindowConfig {
width: u32,
height: u32,
}
impl PenguinConfig for WindowConfig {
fn read_config() -> Self {
let config: Self = Deserializer::file_path("window_config.json").deserialize();
config
}
}
许可协议
许可协议下 MIT。你可以随意使用它 :)
依赖项
~1.8–2.4MB
~56K SLoC