[package] name = "hailsens_logger" version = "1.0.0" edition = "2021" [dependencies] serialport = { version = "4.5", default-features = false } log = "0.4" fern = { version = "0.6", default-features = false } enable-ansi-support = "0.2" owo-colors = "4.1" chrono = "0.4" hound = "3.5" clap = { version = "4.5", features = ["derive"] } ctrlc = "3.4" crc = "3.2" [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.