-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
29 lines (28 loc) · 894 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.0.10", features = ["cargo"]}
crossterm = "0.25.0"
dirs = "4.0.0"
format_num = "0.1.0"
is_executable = "1.0.1"
regex = "1.6.0"
serde = {version = "1.0.139", features = ["derive"]}
serde_json = "1.0.82"
time = {version = "0.3.11", features = ["formatting", "parsing"]}
tokio = {version = "1.25.0", features = [
"process",
"io-util",
"rt-multi-thread",
"macros",
]}