-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
58 lines (42 loc) · 1.52 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
[package]
name = "crow"
version = "0.5.2"
authors = ["Theo Salzmann <theo.salzmann@sandstorm.de>"]
edition = "2018"
description = "crow (command row) is a CLI tool to help you memorize CLI commands by saving them with a unique description. Whenever you can't remember a certain command you can then use crow to fuzzy search commands by their description. (NOTE: this tool currently only works on UNIX systems!)"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
regex = "1"
fuzzy-matcher = "0.3"
nanoid = "0.4.0"
copypasta = "0.7.1"
shellexpand = "2.1.0"
indexmap = "1.7.0"
###############
# Arg parsing #
###############
clap = "2.33.0"
######################
# (De-)Serialization #
######################
# The core APIs, including the Serialize and Deserialize traits. Always
# required when using Serde. The "derive" feature is only required when
# using #[derive(Serialize, Deserialize)] to make Serde work with structs
# and enums defined in your crate.
serde = { version = "^1.0.0", features = ["derive"] }
# Each data format lives in its own crate; the sample code below uses JSON
# but you may be using a different one.
serde_json = "^1.0.0"
#######################
# File/Dir management #
#######################
dirs = "4.0"
###############
# Terminal UI #
###############
crossterm = "0.22"
tui = { version = "0.16", default-features = false, features = ['crossterm'] }
dialoguer = "0.9.0"
# Measure string by unicode characters
unicode-width = "0.1.5"