1 Star 0 Fork 0

Ucalan/analyzer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Cargo.toml 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
cv1002 提交于 2022-04-01 22:04 +08:00 . .
[package]
name = "analyzer"
version = "1.0.0"
edition = "2021"
[workspace]
members = [
"commonlib",
"formatter",
"new_differ",
"afterwork",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
commonlib = {path = "./commonlib" }
# 序列化库
serde = { version = "1.0.126", features = ["derive", "rc"] }
serde_json = "1.0.68"
serde_derive = "1.0.126"
# string相似度
strsim = "0.10.0"
# Python的FFI
pyo3 = { version = "0.16.2", features = ["auto-initialize"] }
# 增强语言功能
rand = "0.8.4" # 随机数
regex = "1.5.4" # 正则
libc = "0.2.107" # C链接
dashmap = "5.0.0" # 多线程HashMap
scan_fmt = "0.2.6" # scan
parking_lot = "0.12.0" # 多线程基础工具库
crossbeam = "0.8.1" # 多线程基础工具库
scopeguard = "1.1.0" # ScopeGuard
lazy_static = "1.4.0" # static库
derive-getters = "0.2.0" # 自动生成getter
typed-builder = "0.10.0" # 建造者模式
[dependencies.gc] # GC
version = "0.4.1"
features = ["derive"]
[dependencies.tokio] # 异步框架
version = "1.17.0"
features = ["full"]
[dependencies.actix-web]
version = "4"
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ucalan/analyzer.git
git@gitee.com:ucalan/analyzer.git
ucalan
analyzer
analyzer
master

搜索帮助