-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 979 Bytes
/
Cargo.toml
File metadata and controls
30 lines (27 loc) · 979 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
[package]
name = "prac"
authors = ["Henry Merrilees <henry@merrile.es>"]
description = "The feedback-oriented utility for a practice-oriented life."
version = "0.1.6"
edition = "2021"
license = "MIT"
repository = "https://github.com/henry-merrilees/prac"
homepage = "https://github.com/henry-merrilees/prac"
keywords = ["productivity", "cli", "practice"]
categories = ["command-line-utilities"]
[dependencies]
anyhow = "1.0.72"
chrono = { version = "0.4.26", features = ["serde"] }
clap = { version = "4.3.19", features = ["derive", "color", "cargo", "env"] }
ctrlc = "3.4.1"
dialoguer = { version = "0.10.4", features = ["completion", "fuzzy-select"] }
dirs = "5.0.1"
itertools = "0.11.0"
pest = { version = "2.7.2", features = ["pretty-print"] }
pest_derive = "2.7.2"
serde = { version = "1.0.178", features = ["derive"] }
serde_json = "1.0.104"
serde_with = { version = "3.3.0", features = ["chrono", "chrono_0_4"] }
shellexpand = "3.1.0"
skim = "0.10.4"
termion = "4.0.0"