forked from Canop/rhit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (45 loc) · 1.08 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
42
43
44
45
46
47
48
49
50
[package]
name = "rhit"
version = "2.0.3"
authors = ["dystroy <[email protected]>"]
repository = "https://github.com/Canop/rhit"
description = "nginx log analyzer"
edition = "2021"
keywords = ["log", "nginx", "analyzer"]
license = "MIT"
categories = ["command-line-utilities"]
rust-version = "1.60"
[dependencies]
bet = "1.0.4"
clap = { version = "4.4", features = ["derive", "cargo"] }
clap-help = "1.0.0"
cli-log = "2.0"
file-size = "1.0.3"
flate2 = "1.0.30"
have = "0.1.1"
itertools = "0.13"
lazy-regex = "3.3"
num-format = "0.4"
smallvec = "1.11"
termimad = { version = "0.30", default-features = false, features = ["special-renders"] }
thiserror = "1.0"
[dev-dependencies]
glassbench = "0.4"
[profile.release]
debug = false
lto = true
codegen-units = 1
strip = true
[[bench]]
name = "load_base"
harness = false
[[bench]]
name = "filter_resources"
harness = false
[patch.crates-io]
# bet = { path = "../bet" }
# cli-log = { path = "../cli-log" }
# have = { path = "../have" }
# minimad = { path = "../minimad" }
# termimad = { path = "../termimad" }
# lazy-regex = { path = "../lazy-regex" }