加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Cargo.toml 965 Bytes
一键复制 编辑 原始数据 按行查看 历史
liyangbin 提交于 2024-12-01 12:41 . 优化统计算法,修改各种bug
[package]
name = "enhanced_logcat"
version = "0.1.0"
edition = "2021"
[dependencies]
egui = "0.27.0"
egui_extras = "0.27.2"
eframe = { version = "0.27.0", default-features = false, features = [
"accesskit", # Make egui comptaible with screen readers. NOTE: adds a lot of dependencies.
"default_fonts", # Embed the default egui fonts.
"wgpu", # Use the glow rendering backend. Alternative: "wgpu".
"persistence", # Enable restoring app state when restarting the app.
] }
log = "0.4"
env_logger = "0.11.3"
# You only need serde if you want app persistence:
serde = { version = "1", features = ["derive"] }
tokio = { version = "1.37.0", features = ["full"] }
tokio-stream = "0.1.15"
async-stream = "0.3.5"
num_cpus = "1.16.0"
regex = "1.10.4"
lazy_static = "1.4.0"
lru-cache = "0.1.2"
rand = "0.8.5"
sysinfo = "0.30.11"
[dev-dependencies]
criterion = "0.5.1"
memchr = "2.7.2"
regex = "1.10.4"
[[bench]]
name = "test"
harness = false
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化