-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (36 loc) · 1.06 KB
/
Cargo.toml
File metadata and controls
40 lines (36 loc) · 1.06 KB
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
[package]
name = "boat-cli"
version = "0.5.0"
edition = "2024"
description = "Basic Opinionated Activity Tracker, a command line interface inspired by bartib"
repository = "https://github.com/coko7/boat"
authors = ["Coko <91132775+Coko7@users.noreply.github.com>"]
license = "GPL-3.0-only"
keywords = ["cli", "time-tracking", "time-tracker", "productivity"]
categories = ["command-line-utilities", "filesystem"]
include = ["src/**", "Cargo.toml", "README.md"]
[[bin]]
name = "boat"
path = "src/main.rs"
[dependencies]
clap = { version = "4.6.0", features = ["derive"] }
env_logger = "0.11.9"
log = "0.4.29"
clap-verbosity-flag = "3.0.4"
anyhow = "1.0.102"
directories = "6.0.0"
serde = { version = "1.0.228", features = ["derive"] }
toml = "1.0.7"
rusqlite = "0.39.0"
chrono = { version = "0.4.44", features = ["serde"] }
serde_json = "1.0.149"
boat-lib = "0.4.0"
tabular = { version = "0.2.0", features = ["ansi-cell"] }
yansi = "1.0.1"
[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.0"
tempfile = "3.8"
[features]
default = []
bundled-sqlite = ["boat-lib/bundled-sqlite"]