-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
46 lines (42 loc) · 1.21 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
[package]
name = "tod"
version = "0.6.25"
authors = ["Alan Vardy <alan@vardy.cc>"]
edition = "2021"
license = "MIT"
description = "A tiny unofficial Todoist client"
readme = "README.md"
homepage = "https://github.com/alanvardy/tod"
repository = "https://github.com/alanvardy/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"
serde = { version = "1.0", features = ["derive"] }
reqwest = { version = "0.12", features = ["json"] }
uuid = { version = "1.11", features = ["serde", "v4"] }
dirs = "5.0"
matches = "0.1.10"
regex = "1"
chrono = "0.4.39"
chrono-tz = "0.10.0"
colored = "2.2.0"
clap = { version = "4.5.23", features = ["derive"] }
spinners = "4.1.1"
inquire = { version = "0.7.5", features = ["date"] }
serde_repr = "0.1.19"
rand = "0.8.5"
rayon = "1.10.0"
pad = "0.1.6"
urlencoding = "2.1.3"
homedir = "0.3.4"
tokio = { version = "1.42.0", features = ["full"] }
futures = "0.3.31"
supports-hyperlinks = "3.1.0"
terminal_size = "0.4.1"
clap_complete = "4.5.40"
walkdir = "2.5.0"
[dev-dependencies]
mockito = "1.4.0"
pretty_assertions = "1.4.1"