light-tool 0.1.0

轻量级的Rust工具库
Documentation
  • Coverage
  • 60%
    3 out of 5 items documented3 out of 5 items with examples
  • Size
  • Source code size: 2.96 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 188.53 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 5s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • GetcharZp

LightTool

一个轻量级的Rust工具库,提倡的核心理念是:基于Rust原生库、无第三方依赖

快速开始

例如 seconds() 方法(获取当前秒级时间戳),使用方法如下所示

use light_tool::timestamp;

println!("{}", timestamp::seconds());