-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (40 loc) · 1.12 KB
/
Cargo.toml
File metadata and controls
44 lines (40 loc) · 1.12 KB
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 = "detect"
description = "Expression-based file search combining name, content, metadata, and structured data predicates"
license = "MIT OR Apache-2.0"
version = "0.3.0"
edition = "2021"
rust-version = "1.70"
repository = "https://github.com/inanna-malick/detect/"
homepage = "https://github.com/inanna-malick/detect/"
keywords = ["egrep", "grep", "pattern", "regex", "search"]
categories = ["command-line-utilities", "filesystem"]
[[bin]]
name = "detect"
path = "src/main.rs"
[dependencies]
clap = {version = "4.5", features = ["derive"]}
futures = "0.3.31"
ignore = "0.4"
pest = "2.7.15"
pest_derive = "2.7.15"
recursion = {version = "0.5", features = ["experimental"]}
regex = "1.12"
regex-automata = "0.4.13"
slog-term = "2.9"
slog = "2.7"
tokio = {version = "1.48", features = ["rt", "rt-multi-thread", "fs", "macros"]}
tokio-util = {version ="0.7.17", features = ["io"] }
serde_json = "1.0"
chrono = "0.4"
thiserror = "2.0"
miette = { version = "7.6.0", features = ["fancy"] }
toml = "0.9.8"
yaml-rust2 = "0.10.4"
[dev-dependencies]
tempfile = "3"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true