[package] name = "atterminal" version = "2.10.0" edition = "2021" authors = ["Hardfood "] description = "串口调试工具,使用eframe框架开发" repository = "https://gitee.com/w-8/atterminal" license = "LGPL-3.0-only" license-file = "LICENSE.txt" keywords = ["app","serial","rs232","serialport"] readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] eframe = { version = "0.20", features = ["persistence"] } egui_extras = "0.20" serialport = {version ="4.2.0",features =["serde"]} serde = { version = "1", features = ["derive"] } # You only need this if you want app persistence toml = "0.5.9" walkdir = "2.3.2" hex = "0.4.3" chrono = "0.4.22" rfd = "0.10.0" comportlist = "0.1.3" image = {version = "0.24.5",features=["ico"]} [build-dependencies] embed-resource = "1.5.1" [profile.release] opt-level = 'z' lto = true panic = 'abort' strip = true