-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (24 loc) · 715 Bytes
/
Cargo.toml
File metadata and controls
25 lines (24 loc) · 715 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
[package]
name = "loggrep"
version = "0.2.0"
edition = "2021"
description = "A smarter log parser with color-coded severity, time filtering, regex matching, and stats"
license = "MIT"
repository = "https://github.com/dyascj/loggrep-cli"
homepage = "https://github.com/dyascj/loggrep-cli"
readme = "README.md"
keywords = ["cli", "logs", "grep", "terminal", "parser"]
categories = ["command-line-utilities", "text-processing"]
[dependencies]
clap = { version = "4", features = ["derive"] }
clap_complete = "4"
colored = "2"
regex = "1"
chrono = { version = "0.4", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
notify = "6"
flate2 = "1"
toml = "0.8"
dirs = "5"