-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 928 Bytes
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 928 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
[package]
name = "tracker"
version = "0.11.0"
edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1"
chrono = "0.4.42"
clap = { version = "4", features = ["derive"] }
dirs = "6"
edit = "0.1.5"
fancy-duration = { version = "0.9.2", features = ["chrono", "serde"] }
figment = { version = "0.10", features = ["json", "yaml", "toml", "env"] }
inquire = { version = "0.9.1", features = ["date", "editor"] }
regex = "1.12.2"
serde = { version = "1", features = ["derive"] }
yansi = "1.0.1"
clap-markdown = { version = "0.1.5", optional = true }
crossterm = "0.29.0"
scopeguard = "1.2.0"
rusqlite = { version = "0.38.0", features = ["bundled", "chrono"] }
rusqlite_migration = { version = "2.4.1", features = ["from-directory"] }
include_dir = "0.7.4"
[profile.release]
strip = true
opt-level = "s"
codegen-units = 1
lto = true
panic = "unwind"