build(deps):调整功能依赖,建立单元测试文件夹。

This commit is contained in:
徐涛 2023-06-29 14:17:12 +08:00
parent 92c89e9ceb
commit 6fa267d4fa
3 changed files with 14 additions and 3 deletions

View File

@ -1,8 +1,21 @@
[package] [package]
name = "toolbox" name = "rs_toolbox"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
[lib]
crate-type = ["dylib", "rlib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
aes = "0.8.3"
base64 = "0.21.2"
cbc = "0.1.2"
des = "0.8.1"
hex = "0.4.3"
hmac-sha512 = "1.1.5"
md-5 = "0.10.5"
rand = "0.8.5"
sha1 = "0.10.5"
uuid = { version = "1.4.0", features = ["v4", "fast-rng"] }

View File

@ -7,7 +7,6 @@ Rust 中可以使用的常用辅助功能工具箱。主要配备以下功能:
- [ ] AES-CBC 便捷加解密算法 - [ ] AES-CBC 便捷加解密算法
- [ ] ZerosPadding - [ ] ZerosPadding
- [ ] Pkcs7Padding - [ ] Pkcs7Padding
- [ ] AES-GCM 便捷加解密算法
- [ ] DES-CBC 便捷加解密算法 - [ ] DES-CBC 便捷加解密算法
- [ ] ZerosPadding - [ ] ZerosPadding
- [ ] Pkcs7Padding - [ ] Pkcs7Padding
@ -21,7 +20,6 @@ Rust 中可以使用的常用辅助功能工具箱。主要配备以下功能:
- [ ] 改进版雪花 ID 生成器(短主机精简日期版) - [ ] 改进版雪花 ID 生成器(短主机精简日期版)
- [ ] UUID 生成器 - [ ] UUID 生成器
- [ ] short UUID 生成器 - [ ] short UUID 生成器
- [ ] GUID 生成器
- 签名算法 - 签名算法
- [ ] RSA 签名算法 - [ ] RSA 签名算法
- 验证码生成器 - 验证码生成器

0
tests/.gitkeep Normal file
View File