-
-
Notifications
You must be signed in to change notification settings - Fork 69
/
Cargo.toml
63 lines (56 loc) · 1.62 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "taskwarrior-tui"
version = "0.26.4"
license = "MIT"
description = "A Taskwarrior Terminal User Interface"
repository = "https://github.com/kdheepak/taskwarrior-tui/"
homepage = "https://kdheepak.com/taskwarrior-tui"
readme = "README.md"
authors = ["Dheepak Krishnamurthy <[email protected]>", "Etherbloom <[email protected]>"]
edition = "2018"
keywords = ["taskwarrior", "tui"]
categories = ["command-line-utilities"]
[dependencies]
anyhow = "1.0.86"
better-panic = "0.3.0"
cassowary = "0.3.0"
chrono = "0.4.38"
clap = { version = "4.5.7", features = ["derive"] }
crossterm = { version = "0.27.0", features = ["event-stream"] }
dirs = "5.0.1"
futures = "0.3.30"
itertools = "0.13.0"
lazy_static = "1.4.0"
log = "0.4.21"
log4rs = "1.3.0"
path-clean = "1.0.1"
rand = "0.8.5"
regex = "1.10.5"
rustyline = { version = "14.0.0", features = ["with-file-history", "derive"] }
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.109"
shellexpand = "3.1.0"
shlex = "1.3.0"
task-hookrs = "0.9.0"
tokio = { version = "1.38.0", features = ["full"] }
tokio-stream = "0.1.15"
ratatui = "0.26"
unicode-segmentation = "1.11.0"
unicode-truncate = "1.0.0"
unicode-width = "0.1.13"
uuid = { version = "1.8.0", features = ["serde", "v4"] }
versions = "6.2.0"
[package.metadata.rpm]
package = "taskwarrior-tui"
[package.metadata.rpm.cargo]
buildflags = ["--release"]
[package.metadata.rpm.targets]
taskwarrior-tui = { path = "/usr/bin/taskwarrior-tui" }
[profile.release]
debug = 1
incremental = true
lto = "fat"
[build-dependencies]
clap = { version = "4.5.7", features = ["derive"] }
clap_complete = "4.5.5"
shlex = "1.3.0"