-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathCargo.toml
39 lines (35 loc) · 925 Bytes
/
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
[package]
name = "igrep"
version = "1.3.0"
authors = ["Konrad Szymoniak <szymoniak.konrad@gmail.com>"]
license = "MIT"
description = "Interactive Grep"
homepage = "https://github.com/konradsz/igrep"
documentation = "https://github.com/konradsz/igrep"
repository = "https://github.com/konradsz/igrep"
keywords = ["cli", "tui", "grep"]
categories = ["command-line-utilities"]
edition = "2021"
[[bin]]
name = "ig"
path = "src/main.rs"
[dependencies]
grep = "0.3.1"
ignore = "0.4.22"
clap = { version = "4.5.4", features = ["derive", "env"] }
crossterm = "0.27.0"
ratatui = { version = "0.26.2", default-features = false, features = [
'crossterm',
] }
unicode-width = "0.1.12"
itertools = "0.13.0"
anyhow = "1.0.83"
strum = { version = "0.26.2", features = ["derive"] }
syntect = "5.2.0"
which = "6.0.3"
[dev-dependencies]
lazy_static = "1.4.0"
test-case = "3.3.1"
mockall = "0.12.1"
[build-dependencies]
anyhow = "1.0.83"