5个版本
使用旧的Rust 2015
0.1.4 | 2023年12月23日 |
---|---|
0.1.3 | 2023年11月25日 |
0.1.2 | 2023年3月28日 |
0.1.1 | 2023年3月28日 |
0.1.0 | 2023年3月28日 |
268 in 图像
每月21次下载
7KB
114 行
Maple lib 工具
MapleImage的简单工具库。
用法
将此内容添加到您的 Cargo.toml 中
[dependencies]
maple_lib = "0.1.3"
示例
use maple_lib::human_format;
use std::time::Duration;
let result = human_format(Duration::from_secs(59));
assert_eq!(result, "00h:00m:59s");
use maple_lib::pad_start;
let result = pad_start("hello", 10, ' ');
assert_eq!(result, " hello");
use maple_lib::execution_time;
let result = execution_time(|| {
1+1
});
assert_eq!(result.0, 1);
发布
cargo publish --registry crates-io
# 然后输入.env中的密钥即可