write_tool_rs/Cargo.toml

24 lines
571 B
TOML
Raw Normal View History

2024-07-06 03:28:33 +08:00
[package]
name = "write_tool"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-07-08 16:39:36 +08:00
anyhow = "^1.0.86"
2024-07-06 03:28:33 +08:00
fltk = { version = "^1.4", features = ["fltk-bundled"] }
2024-07-08 16:39:36 +08:00
calamine = "0.25.0"
serialport = "4.4.0"
rusqlite = "0.25.4"
2024-07-07 23:13:44 +08:00
libsqlite3-sys = { version = "0.22.2", features = ["bundled"] }
2024-07-08 16:39:36 +08:00
chrono = "0.4.38"
log = "0.4.22"
once_cell = "0.1.8"
lazy_static = "1.5.0"
serde= { version = "1.0.203", features = ["derive"] }
serde_json="1.0.120"
2024-07-08 16:39:36 +08:00
[build-dependencies]
fl2rust = "0.5.19"