-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
48 lines (44 loc) · 1015 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "logss"
description = "A simple command line tool that helps you visualize an input stream of text."
version = "0.0.3"
authors = ["Victor Rosales <[email protected]>"]
edition = "2021"
publish = true
repository = "https://github.com/todoesverso/logss"
keywords = ["terminal", "logs", "cli", "split"]
categories = ["visualization", "command-line-utilities", "parsing"]
license = "MIT"
rust-version = "1.74.0"
exclude = [
"assets/*",
".github",
"Makefile.toml",
"CONTRIBUTING.md",
"*.log",
"tags",
]
readme = "README.md"
[badges]
[dependencies]
crossterm = "0.26.1"
is-terminal = "0.4.9"
unicode-width = "0.1.11"
pico-args = "0.5.0"
ratatui = "0.26.1"
regex = "1.9.5"
serde_yaml = "0.9.27"
serde = {version = "1.0.190", features = ["derive"]}
proc-macro2 = "1.0.70"
slug = "0.1.5"
anyhow = "1.0.75"
threadpool = "1.8.1"
wait-timeout = "0.2.0"
[profile.release]
codegen-units = 1
lto = "fat"
opt-level = 3
strip = true
[dev-dependencies]
assert_cmd = "2.0.10"
predicates = "3.0.3"