forked from watercooler-labs/toggl-cli
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (56 loc) · 1.52 KB
/
Cargo.toml
File metadata and controls
66 lines (56 loc) · 1.52 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "toggl"
version = "0.7.6"
authors = [
"CorrectRoadH <tylerchc92@gmail.com>",
"Shantanu Raj <s@sraj.me>",
"William Barbosa <heytherewill@gmail.com>"
]
categories = [
"api-bindings",
"command-line-utilities",
"date-and-time",
]
description = "Unofficial command-line interface for Toggl Track using the v9 API."
homepage = "https://github.com/CorrectRoadH/toggl-cli"
keywords = ["cli", "time", "time-tracking", "toggl", "track"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/CorrectRoadH/toggl-cli"
edition = "2021"
[dependencies]
# Argument parsing
clap = { version = "4.5", features = ["derive", "env", "suggestions"] }
# Terminal utilities
colored = "2.0.0"
colors-transform = "0.2.11"
# Storage
keyring = { version = "2", features = ["linux-default-keyutils"] }
# Config
directories = "5.0.0"
lazy_static = "1.4.0"
once_cell = "1.19"
regex = "1.7.3"
toml = "0.7.3"
# API
dotenvy = "0.15"
serde = { version = "1.0.159", features = ["derive"] }
serde_json = { version = "1.0.95", features = ["preserve_order"] }
reqwest = { version = "0.11", features = ["json"] }
tokio = { version = "1.27.0", features = ["full"] }
base64 = "0.21.0"
async-trait = "0.1.68"
# Models
chrono = { version = "0.4.24", features = ["serde"] }
[target.'cfg(unix)'.dependencies]
skim = "0.10.4"
[dev-dependencies]
# Testing
mockall = "0.11.4"
tokio-test = "0.4.2"
[package.metadata.dist]
# Config lives in dist-workspace.toml
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"