-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
36 lines (34 loc) · 964 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
[package]
name = "lnr"
version = "0.2.0"
authors = ["Alan Vardy <[email protected]>"]
edition = "2021"
license = "MIT"
description = "A tiny unofficial Linear client"
readme = "README.md"
homepage = "https://github.com/alanvardy/lnr"
repository = "https://github.com/alanvardy/lnr"
keywords = ["cli", "linear", "client", "tickets"]
categories = ["command-line-utilities"]
[dependencies]
serde_json = "1"
serde = { version = "1.0", features = ["derive"] }
reqwest = { version = "0.12", features = ["json", "blocking"] }
uuid = { version = "1.12", features = ["serde", "v4"] }
dirs = "5.0"
matches = "0.1.10"
regex = "1"
chrono = "0.4.39"
chrono-tz = "0.10.1"
colored = "2.2.0"
clap = { version = "4.5.27", features = ["derive"] }
spinners = "4.1.0"
inquire = { version = "0.7.5", features = ["editor"] }
rand = "0.8.5"
pretty_assertions = "1.4.1"
toml = "0.8.19"
walkdir = "2.3.3"
handlebars = "6.3.0"
[dev-dependencies]
mockito = "1.6.1"
pretty_assertions = "1.4.1"