-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (41 loc) · 1.1 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
[package]
name = "fstsed"
version = "0.4.0" #:version
authors = ["Eric Hutchins"]
description = "Find and replace/decorate text at scale using finite state transducers (fst)"
homepage = "https://github.com/erichutchins/fstsed"
repository = "https://github.com/erichutchins/fstsed"
readme = "README.md"
categories = ["text-processing", "command-line-interface"]
keywords = ["cli", "fst", "sed", "dfir"]
license = "Unlicense OR MIT"
edition = "2021"
[[bin]]
name = "fstsed"
path = "src/main.rs"
[profile.release]
lto = "fat"
codegen-units = 1
opt-level = 3
overflow-checks = false
debug-assertions = false
panic = "abort"
incremental = false
[dependencies]
anyhow = "1.0.81"
bstr = "1.9.1"
camino = "1.1.6"
clap = { version = "4.5.4", features = ["derive", "cargo"] }
fst = "0.4.7"
grep-cli = "0.1.10"
itermore = { version = "0.7.1", default-features = false, features = [
"array_chunks",
] }
lazy_static = "1.4.0"
memchr = "2.7.2"
memmap2 = "0.9.4"
microtemplate = "1.0.3"
regex = "1.10.4"
serde_json = "1.0.116"
termcolor = "1.4.1"
zstd = "0.13.1"