-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (28 loc) · 962 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (28 loc) · 962 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
26
27
28
29
30
[package]
authors = ["Christopher Sardegna <logria@reagentx.net>"]
categories = ["command-line-interface", "command-line-utilities"]
description = "A powerful CLI tool that puts log analytics at your fingertips."
edition = "2024"
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.60", features = ["cargo"] }
crossterm = "=0.29.0"
dirs = "=6.0.0"
is_executable = "=1.0.5"
regex = "=1.12.3"
serde = { version = "=1.0.228", features = ["derive"] }
serde_json = "=1.0.149"
time = { version = "=0.3.47", features = ["formatting", "parsing"] }
[profile.release]
# Perform Link Time Optimization
lto = true
# Use a single codegen unit for the entire crate
codegen-units = 1
# Do not unwind stack on crash
panic = "abort"