dev-tool 0.1.9

dev-tool是一个Rust工具包类库,对文件、加密解密、转码、正则、线程池、sqlite等方法进行封装,组成各种Util工具类。
Documentation
[package]

name = "dev-tool"

version = "0.1.9"

edition = "2024"

authors = ["theorydance <ranfusheng@dingtalk.com>"]

description = "dev-tool是一个Rust工具包类库,对文件、加密解密、转码、正则、线程池、sqlite等方法进行封装,组成各种Util工具类。"

documentation = "https://crates.io/crates/dev-tool"

readme = "README.md"

repository = "https://gitee.com/ranfusheng/dev-tool.git"

license = "MIT"

license-file = "LICENSE"

keywords = ["dev", "tool", "util"]

categories = ["cryptography"]



# 让使用者按需引入,或定义默认引入内容,暂不做约束,后续再设置按需引入

[features]





[dependencies]

base64 = { version = "0.22.1" }

chrono = { version = "0.4.41" }

env_logger = { version = "0.11.8" }

from-sqlite-row-macro = "1.0.0"

glob = { version = "0.3.3" }

hmac = { version = "0.12.1" }

log = { version = "0.4.27" }

md5 = { version = "0.8.0" }

rand = { version = "0.9.2" }

rayon = { version = "1.11.0" }

regex = { version = "1.11.2" }

reqwest = { version = "0.12.23", features = ["multipart", "json", "blocking"] }

serde_json = { version = "1.0.143" }

serde_yaml = { version = "0.9.34" }

sha1 = { version = "0.10.6" }

sha2 = { version = "0.10.9" }

sqlite = { version = "0.37.0" }

threadpool = { version = "1.8.1" }

tokio = { version = "1.47.1", features = ["full"] }

uuid = { version = "1.18.0", features = ["v4"] }