-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
29 lines (28 loc) · 914 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
[package]
authors = ["Christopher Sardegna <[email protected]>"]
categories = ["command-line-interface", "command-line-utilities"]
description = "A powerful CLI tool that puts log analytics at your fingertips."
edition = "2021"
exclude = ["/resources", ".github", "docs", "build.sh"]
keywords = ["cli", "tui", "logs", "log-parsing", "log-analytics"]
license = "GPL-3.0-or-later"
name = "logria"
readme = "README.md"
repository = "https://github.com/ReagentX/Logria"
version = "0.0.0"
[dependencies]
clap = { version = "=4.5.23", features = ["cargo"] }
crossterm = "=0.28.1"
dirs = "=5.0.1"
format_num = "=0.1.0"
is_executable = "=1.0.4"
regex = "=1.11.1"
serde = { version = "=1.0.216", features = ["derive"] }
serde_json = "=1.0.134"
time = { version = "=0.3.37", features = ["formatting", "parsing"] }
tokio = { version = "=1.42.0", features = [
"process",
"io-util",
"rt-multi-thread",
"macros",
] }