light-tool

Crates.iolight-tool
lib.rslight-tool
version0.1.1
sourcesrc
created_at2024-12-02 03:18:43.055985
updated_at2024-12-09 06:59:23.341942
description轻量级的Rust工具库
homepage
repositoryhttps://github.com/getcharzp/light-tool
max_upload_size
id1468172
size11,794
GetcharZp (GetcharZp)

documentation

README

LightTool

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

快速开始

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

use light_tool::timestamp;

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

方法列表

  • timestamp::seconds() 秒级时间戳
  • timestamp::milli_seconds() 毫秒时间戳
  • timestamp::nano_seconds() 纳秒时间戳
  • random::str() 随机字符串
  • random::num() 随机数字
  • random::alpha() 随机字母
  • random::alpha_num() 随机字母数字
  • random::range() 指定范围内的随机数 [最小值, 最大值)
  • md5::str() 获取MD5值
  • md5::salt() 获取加盐后的MD5值
Commit count: 6

cargo fmt