-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
41 lines (35 loc) · 1.14 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "log-analyzer-pro"
version = "1.0.3" #:version
authors = ["Mario Casals <[email protected]>"]
description = """
Log Analyzer Pro is a command line application giving powerful filtering and searching
capabilities to analyze software logs.
Logs can come from log files (updates live if these are modified)
or a socket connection.
"""
documentation = "https://github.com/MrCasCode/log-analyzer-pro"
homepage = "https://github.com/MrCasCode/log-analyzer-pro"
repository = "https://github.com/MrCasCode/log-analyzer-pro"
keywords = ["log", "filter", "analysis", "regex", "search"]
categories = ["development-tools::debugging", "command-line-utilities", "text-processing"]
license = "Unlicense OR MIT"
readme = "README.md"
autotests = false
edition = "2021"
[[bin]]
bench = false
path = "src/main.rs"
name = "lap"
[workspace]
members = [
"crates/terminal-ui",
"crates/log-analyzer",
"crates/log-source"
]
[dependencies]
async-std = { version = "1.12.0", features = ["unstable"]}
clap = { version = "3.2.25", features = ["derive"] }
terminal-ui = {version = "0.1.3", path= "crates/terminal-ui"}
[profile.release]
debug = true