-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 820 Bytes
/
Cargo.toml
File metadata and controls
29 lines (27 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "taskmaster"
version = "0.1.1"
description = "A terminal ToDo application."
authors = ["jrstaple <joshrstapleton@gmail.com>"]
license = "CC-BY-NC-SA-4.0"
edition = "2024"
exclude = [
"example/*",
]
repository = "https://github.com/jrstapl/taskmaster.git"
[dependencies]
crossterm = { version = "0.28.1", features = ["event-stream"] }
futures = "0.3.31"
ratatui = "0.30.0"
tokio = { version = "1.40.0", features = ["full"] }
color-eyre = "0.6.3"
clap = { version = "4.5.60", features = ["cargo", "string"] }
chrono = "0.4.44"
rusqlite = { version = "0.38.0", features = ["bundled"] }
directories = "6.0.0"
# Read the optimization guideline for more details: https://ratatui.rs/recipes/apps/release-your-app/#optimizations
[profile.release]
codegen-units = 1
lto = true
opt-level = "s"
strip = true