-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 792 Bytes
/
Cargo.toml
File metadata and controls
33 lines (30 loc) · 792 Bytes
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
[package]
name = "tqs"
version = "0.3.1"
edition = "2024"
description = "Terminal task queue CLI with Markdown/YAML-backed tasks"
repository = "https://github.com/andreabergia/tqs"
homepage = "https://github.com/andreabergia/tqs"
[dependencies]
chrono = { version = "0.4", features = ["clock", "serde"] }
clap = { version = "4.5", features = ["derive"] }
dialoguer = { version = "0.12", default-features = false }
fuzzy-matcher = "0.3"
crossterm = "0.28"
libc = "0.2"
ratatui = "0.29"
rand = "0.10"
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9"
shell-words = "1"
thiserror = "2"
toml = "1.0"
[dev-dependencies]
assert_cmd = "2"
assert_fs = "1"
predicates = "3"
tempfile = "3"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"