-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (36 loc) · 939 Bytes
/
Copy pathCargo.toml
File metadata and controls
41 lines (36 loc) · 939 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
34
35
36
37
38
39
40
41
[package]
name = "rep-grep"
version = "0.0.8"
edition = "2021"
authors = ["Roben Kleene <contact@robenkleene.com>"]
description = "wgrep/write-grep CLI"
readme = "README.md"
keywords = ["sed", "find", "replace", "regex", "grep"]
license = "MIT"
homepage = "https://github.com/robenkleene/rep-grep"
repository = "https://github.com/robenkleene/rep-grep.git"
categories = ["command-line-utilities", "text-processing", "development-tools"]
[[bin]]
name = "rep"
path = "src/main.rs"
[dependencies]
regex = "1.4.3"
clap = { version = "4", features = ["derive"] }
unescape = "0.1.0"
memmap2 = "0.9"
tempfile = "3.2.0"
thiserror = "1.0.24"
diffy-fork-filenames = "0.4.0"
indexmap = "1.9.2"
shell-words = "1.1.0"
grep-cli = "0.1.7"
[dev-dependencies]
assert_cmd = "1.0.3"
anyhow = "1.0.38"
[build-dependencies]
clap = { version = "4", features = ["derive"] }
clap_complete = "4"
clap_mangen = "0.2"
[profile.release]
opt-level = 3
lto = true