-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (52 loc) · 1.47 KB
/
Cargo.toml
File metadata and controls
57 lines (52 loc) · 1.47 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
[package]
name = "tod"
version = "0.11.2"
authors = ["Alan Vardy <alan@vardy.cc>"]
edition = "2024"
license = "MIT"
description = "An unofficial Todoist command-line client"
readme = "README.md"
homepage = "https://github.com/tod-org/tod"
repository = "https://github.com/tod-org/tod"
keywords = ["cli", "todoist", "client", "tasks", "todo"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde_json = "1.0.149"
serde = { version = "1.0.228", features = ["derive"] }
reqwest = { version = "0.12.26", features = ["json"] }
uuid = { version = "1.20.0", features = ["serde", "v4"] }
dirs = "6.0.0"
matches = "0.1.10"
regex = "1.12.2"
chrono = "0.4.43"
chrono-tz = "0.10.4"
colored = "3.1.1"
clap = { version = "4.5.54", features = ["derive"] }
spinners = "4.1.1"
inquire = { version = "0.9.2", features = ["date"] }
serde_repr = "0.1.20"
rand = "0.9.2"
rayon = "1.11.0"
pad = "0.1.6"
urlencoding = "2.1.3"
homedir = "0.3.6"
tokio = { version = "1.49.0", features = ["full"] }
futures = "0.3.31"
supports-hyperlinks = "3.2.0"
terminal_size = "0.4.3"
clap_complete = "4.5.65"
walkdir = "2.5.0"
once_cell = "1.21.3"
strum = { version = "0.27.2", features = ["strum_macros"] }
strum_macros = "0.27.2"
axum = "0.8.8"
serde_regex = "1.1.0"
open = "5.3.3"
[dev-dependencies]
assert_cmd = "2.1.2"
mockito = "1.7.1"
predicates = "3.1.3"
pretty_assertions = "1.4.1"
[build-dependencies]
chrono = "0.4.42"