small software-rendered rust tty
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml10
1 files changed, 9 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 8c2289f..086dae6 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -7,7 +7,9 @@ edition = "2024"
anstream = "0.6.18"
anyhow = "1.0.98"
atools = "0.1.6"
-chumsky = { git = "https://github.com/zesterer/chumsky", version = "0.11.0", features = ["nightly"] }
+chumsky = { git = "https://github.com/zesterer/chumsky", version = "0.11.0", features = [
+ "nightly",
+] }
color-hex = "0.2.0"
ctlfun = { git = "https://github.com/bend-n/ctlfun" }
fimg = { git = "https://github.com/bend-n/fimg" }
@@ -17,3 +19,9 @@ minifb = "0.28.0"
nix = { version = "0.30.1", features = ["process", "term"] }
parking_lot = "0.12.3"
swash = "0.2.4"
+
+[profile.release]
+debug = 2
+opt-level = 3
+lto = "thin"
+incremental = true