-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
56 lines (48 loc) · 1.23 KB
/
Cargo.toml
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
[package]
name = "toggl"
version = "0.4.9"
authors = [
"Shantanu Raj <[email protected]>",
"Tyler <[email protected]>",
"William Barbosa <[email protected]>"
]
categories = [
"api-bindings",
"command-line-utilities",
"date-and-time",
]
description = "Unofficial command-line interface for Toggl Track using the v9 API."
homepage = "https://toggl.com/track"
keywords = ["cli", "time", "time-tracking", "toggl", "track"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/watercooler-labs/toggl-cli"
edition = "2021"
[dependencies]
# Argument parsing
structopt = { version = "0.3" }
# 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"
regex = "1.7.3"
toml = "0.7.3"
# API
serde = { version = "1.0.159", features = ["derive"] }
serde_json = "1.0.95"
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"