6 个版本 (稳定版)
1.1.1 | 2022年3月11日 |
---|---|
1.0.1 | 2020年9月14日 |
1.0.0 | 2020年1月29日 |
0.1.1 | 2019年5月24日 |
0.1.0 | 2019年5月24日 |
#43 在 编码 分类中
每月下载量 734,794
在 318 个 crate 中使用 (直接使用 115 个)
15KB
301 行
humantime-serde
Serde 对 humantime
crate 的支持。
主要基于这个 分支。
示例
use serde::{Serialize, Deserialize};
use std::time::{Duration, SystemTime};
#[derive(Serialize, Deserialize)]
struct Foo {
#[serde(with = "humantime_serde")]
timeout: Duration,
#[serde(default)]
#[serde(with = "humantime_serde")]
time: Option<SystemTime>,
}
许可证
许可协议为
- Apache License,版本 2.0,(LICENSE-APACHE 或 http://www.apache.org/licenses/LICENSE-2.0)
- MIT 许可证 (LICENSE-MIT 或 http://opensource.org/licenses/MIT)
由您选择。
贡献
除非您明确表示,否则根据 Apache-2.0 许可证定义的任何贡献,有意提交给作品,将按照上述方式双许可,不附加任何额外条款或条件。
依赖
~0.4–1MB
~23K SLoC