hailsens_logger_rs/Cargo.toml

24 lines
701 B
TOML
Raw Permalink Normal View History

2024-05-27 17:19:21 +03:00
[package]
name = "hailsens_logger"
2024-05-31 17:40:47 +03:00
version = "1.0.0"
2024-05-27 17:19:21 +03:00
edition = "2021"
[dependencies]
2024-12-04 20:18:20 +03:00
serialport = { version = "4.5", default-features = false }
2024-05-31 18:31:23 +03:00
log = "0.4"
2024-12-04 20:18:20 +03:00
fern = { version = "0.6", default-features = false }
enable-ansi-support = "0.2"
2024-10-14 13:18:57 +03:00
owo-colors = "4.1"
chrono = "0.4"
2024-05-31 18:31:23 +03:00
hound = "3.5"
clap = { version = "4.5", features = ["derive"] }
ctrlc = "3.4"
crc = "3.2"
2024-12-04 20:18:20 +03:00
[profile.release]
codegen-units = 1 # Allows LLVM to perform better optimization.
lto = true # Enables link-time-optimizations.
opt-level = 2 # "s" Prioritizes small binary size. Use `3` if you prefer speed.
#panic = "abort" # Higher performance by disabling panic handlers.
strip = true # Ensures debug symbols are removed.