-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
47 lines (43 loc) · 1.13 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
[package]
name = "tro"
version = "2.10.0"
authors = ["Michael Aquilina <[email protected]>"]
edition = "2018"
description = "A Trello API client for the command line"
keywords = ["trello"]
categories = ["command-line-utilities"]
readme = "README.rst"
license = "GPL-3.0-only"
homepage = "https://www.github.com/MichaelAquilina/tro"
repository = "https://www.github.com/MichaelAquilina/tro.git"
[lib]
name = "trello"
test = true
path = "src/trello/mod.rs"
[[bin]]
name = "tro"
path = "src/main.rs"
[dependencies]
dirs = "2.0.2"
toml = "0.5.5"
reqwest = { version = "0.10.7", features = ["json", "blocking"] }
url = "2.1.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
clap = { version = "2.33.0", features = ["color"] }
regex = "1.3.1"
log = "0.4.8"
simplelog = "0.7.4"
tempfile = "3.1.0"
colored = "2.0.0"
rustyline = "~6.1.2"
# Pin to 0.11.2 due to bug in 0.11.3 when reading Escape key
# see https://github.com/mitsuhiko/console/issues/66
console = "=0.11.2"
dialoguer = "0.6"
chrono = { version = "0.4", features = ["serde"] }
thiserror = "1.0"
unicode-width="0.1.8"
ctrlc = "3.1.5"
[dev-dependencies]
mockito = "~0.25.0"