diff options
| author | tslil <tslil@posteo.de> | 2026-07-13 15:06:41 +0100 |
|---|---|---|
| committer | tslil <tslil@posteo.de> | 2026-07-13 21:21:21 +0100 |
| commit | 3f289981bd9c8e800a6cd310d4b1f2f36634c9f1 (patch) | |
| tree | ba711eb220e39fe64388d370b16384a7bc84eaab /Cargo.toml | |
| parent | e0241df8afde0483fc36cb2300b53127672486dc (diff) | |
Pure history
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -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 |
