117 个版本
0.0.117 | 2024 年 4 月 20 日 |
---|---|
0.0.108 | 2024 年 3 月 30 日 |
0.0.94 | 2023 年 12 月 12 日 |
0.0.91 | 2023 年 11 月 13 日 |
0.0.37 | 2022 年 5 月 27 日 |
#2044 在 编码
3,477 每月下载量
用于 7 个 crate (5 个直接)
1MB
22K SLoC
musli-storage
为 Müsli 提供超级简单的存储编码
存储编码部分支持升级安全
- ✔ 如果字段已用
#[musli(default)]
注释,则可以容忍缺少字段。 - ✗ 不能跳过未识别的字段。
这意味着它适合作为存储格式,因为数据模型只在一个地方演变。但不适合作为线格式,因为它不能允许客户端独立升级。
有关完全升级安全的格式,请参阅 musli-wire。
use musli::{Encode, Decode};
#[derive(Debug, PartialEq, Encode, Decode)]
struct Version1 {
name: String,
}
#[derive(Debug, PartialEq, Encode, Decode)]
struct Version2 {
name: String,
#[musli(default)]
age: Option<u32>,
}
let version2 = musli_storage::to_vec(&Version2 {
name: String::from("Aristotle"),
age: Some(62),
})?;
assert!(musli_storage::decode::<_, Version1>(version2.as_slice()).is_err());
let version1 = musli_storage::to_vec(&Version1 {
name: String::from("Aristotle"),
})?;
let version2: Version2 = musli_storage::decode(version1.as_slice())?;
assert_eq!(version2, Version2 {
name: String::from("Aristotle"),
age: None,
});
配置
要调整存储格式的行为,您可以使用 Encoding
类型
use musli::mode::Binary;
use musli::{Encode, Decode};
use musli_utils::options::{self, Options, Integer};
use musli_storage::Encoding;
const OPTIONS: Options = options::new().with_integer(Integer::Fixed).build();
const CONFIG: Encoding<OPTIONS> = Encoding::new().with_options();
#[derive(Debug, PartialEq, Encode, Decode)]
struct Struct<'a> {
name: &'a str,
age: u32,
}
let mut out = Vec::new();
let expected = Struct {
name: "Aristotle",
age: 61,
};
CONFIG.encode(&mut out, &expected)?;
let actual = CONFIG.decode(&out[..])?;
assert_eq!(expected, actual);
依赖关系
~0.4–0.9MB
~21K SLoC