-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (25 loc) · 801 Bytes
/
Cargo.toml
File metadata and controls
27 lines (25 loc) · 801 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
[package]
name = "genee"
version = "0.9.3"
authors = ["Lőrinc Serfőző <[email protected]>"]
edition = "2024"
default-run = "genee"
description = "A habit tracker app with command-line interface"
license = "MIT"
homepage = "https://github.com/mfep/genee"
readme = "README.md"
repository = "https://github.com/mfep/genee"
categories = ["command-line-utilities"]
keywords = ["habit-tracking"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
chrono = "0.4.20"
clap = { version = "4", features = ["derive"] }
crossterm = "0.29"
directories-next = "2.0"
rand = "0.9"
ratatui = "0.29"
rusqlite = { version = "0.37", features = ["bundled", "backup"] }
serde = { version = "1.0", features = ["derive"] }
toml = "0.9"