summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2025-07-27 22:32:13 +0200
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2025-07-27 22:32:13 +0200
commit3f3eb4c91885cd5378ff5a3969959345f5a2182f (patch)
tree4ccf52f672a03e6623281ca98e60f97e65e2766d /Cargo.toml
parent0352eeaf0a9dc302b8226f06a118760f96dbde74 (diff)
Change into REPL example, add Command type.
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml15
1 files changed, 14 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 5380e84..d46c2c1 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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"