-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 800 Bytes
/
Copy pathCargo.toml
File metadata and controls
29 lines (27 loc) · 800 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
[package]
name = "pj-cli"
version = "0.4.0"
edition = "2021"
authors = ["Alberto Cebada Aleu <contact@albertocebada.com>"]
description = "Project launcher CLI with fuzzy matching"
readme = "README.md"
homepage = "https://github.com/alceal/pj"
repository = "https://github.com/alceal/pj"
license = "MIT"
keywords = ["cli", "project", "launcher", "fuzzy", "productivity"]
categories = ["command-line-utilities", "development-tools"]
[[bin]]
name = "pj"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
skim = "0.10"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
dirs = "5"
chrono = { version = "0.4", features = ["serde"] }
tabled = "0.17"
dialoguer = { version = "0.11", features = ["completion"] }
anyhow = "1"
crossterm = "0.28"