-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
38 lines (35 loc) · 1019 Bytes
/
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
[package]
name = "tod"
version = "0.5.4"
authors = ["Alan Vardy <[email protected]>"]
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.11", features = ["json", "blocking"] }
uuid = { version = "1.4", features = ["serde", "v4"] }
dirs = "5.0"
matches = "0.1.10"
regex = "1"
chrono = "0.4.31"
chrono-tz = "0.8.3"
colored = "2.0.4"
clap = "4.4.6"
spinners = "4.1.0"
inquire = { version = "0.6.2", features = ["date"] }
serde_repr = "0.1.16"
rand = "0.8.5"
rayon = "1.8.0"
pad = "0.1.6"
urlencoding = "2.1.3"
[dev-dependencies]
mockito = "1.2.0"
pretty_assertions = "1.4.0"