-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (38 loc) · 1020 Bytes
/
Cargo.toml
File metadata and controls
42 lines (38 loc) · 1020 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
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "judo"
version = "2.0.7"
edition = "2024"
authors = ["Giacomo Piccinini <giacomo.piccinini@proton.me>"]
license = "MIT"
description = "Judo - TUI for ToDo lists"
readme = "README.md"
homepage = "https://github.com/giacomopiccinini/judo"
repository = "https://github.com/giacomopiccinini/judo"
keywords = ["tui", "todo"]
[[bin]]
name = "judo"
path = "src/main.rs"
[lib]
name = "judo"
path = "src/lib.rs"
[dependencies]
anyhow = "1.0.99"
arboard = "3.6.1"
chrono = { version = "0.4.41", features = ["serde"] }
clap = { version = "4.5.56", features = ["derive"] }
color-eyre = "0.6.5"
crossterm = "0.29.0"
dirs = "6.0.0"
exitcode = "1.1.2"
ratatui = "0.29.0"
serde = { version = "1.0.219", features = ["derive"] }
sqlx = { version = "0.8.6", features = ["runtime-tokio", "sqlite", "chrono", "macros"] }
tabwriter = "1.4.1"
tokio = { version = "1.47.1", features = ["macros", "rt-multi-thread"] }
textwrap = "0.16"
toml = "0.9.5"
[profile.release]
codegen-units = 1
lto = true
opt-level = 3
strip = true