diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2025-07-27 22:32:13 +0200 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2025-07-27 22:32:13 +0200 |
commit | 3f3eb4c91885cd5378ff5a3969959345f5a2182f (patch) | |
tree | 4ccf52f672a03e6623281ca98e60f97e65e2766d /Cargo.toml | |
parent | 0352eeaf0a9dc302b8226f06a118760f96dbde74 (diff) |
Change into REPL example, add Command type.
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 15 |
1 files changed, 14 insertions, 1 deletions
@@ -3,5 +3,18 @@ name = "dosage" version = "0.1.0" edition = "2024" +[profile.release] +lto = true +opt-level = "z" +strip = true +codegen-units = 1 +#panic = "abort" + [dependencies] -eframe = "0.32" +color-eyre = "0.6" +eyre = "0.6" +thiserror = "2" +crossterm = "0.29.0" +prettytable-rs = "0.10.0" +rustyline = "16" +#termwiz = "0.23" |