-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
58 lines (55 loc) · 1.16 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
57
58
[package]
name = "fbtoggl"
version = "2024.8.2"
edition = "2021"
authors = ["Stefan Ruzitschka <stefan@icepuma.dev>"]
description = "Terminal client to interact with track.toggl.com REST api."
keywords = ["toggl", "track", "time-tracking", "cli", "productivity"]
repository = "https://github.com/icepuma/fbtoggl"
readme = "README.md"
license-file = "LICENSE"
[dependencies]
base64 = "0.22"
minreq = { version = "2", features = [
"https-rustls-probe",
"json-using-serde",
"urlencoding",
] }
clap = { version = "4", features = [
"deprecated",
"derive",
"suggestions",
"color",
"env",
"unicode",
"wrap_help",
] }
anyhow = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
chrono = { version = "0.4", features = ["serde", "clock"] }
chronoutil = "0.2"
now = "0.1"
xdg = "2"
config = "0.14"
toml = "0.8"
dialoguer = "0.11"
urlencoding = "2"
jackdauer = "0.1"
term-table = "1"
colored = "2"
hhmmss = "0.1"
itertools = "0.13"
htp = "0.4"
humantime = "2"
url = "2"
[dev-dependencies]
env_logger = "0.11"
ctor = "0.2"
pretty_assertions = "1"
mockito = "1"
[profile.release]
lto = true
strip = true
opt-level = "z"
codegen-units = 1