aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authortslil <tslil@posteo.de>2026-07-13 15:06:41 +0100
committertslil <tslil@posteo.de>2026-07-13 21:21:21 +0100
commit3f289981bd9c8e800a6cd310d4b1f2f36634c9f1 (patch)
treeba711eb220e39fe64388d370b16384a7bc84eaab /Cargo.toml
parente0241df8afde0483fc36cb2300b53127672486dc (diff)
Pure history
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml11
1 files changed, 9 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 7b9fc39..0b3052f 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,13 +1,20 @@
[package]
name = "mood"
version = "0.1.0"
+description = "A music player governed by your moods."
edition = "2024"
[dependencies]
-derive_more = { version = "2.1.1", features = ["display"] }
+bincode = "=1.3.3"
+chrono = "0.4.45"
directories = "6.0.0"
expanduser = "1.2.2"
rand = "0.10.2"
-ron = "0.12.2"
serde = {version = "1.0.228", features = ["derive"] }
+serde_json = "1.0.150"
walkdir = "2.5.0"
+
+[profile.release]
+strip = true
+lto = "thin"
+opt-level = 3