-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
143 lines (125 loc) · 2.83 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
[workspace]
members = [".", "crate/encstr"]
[workspace.package]
repository = "https://github.com/pamburus/hl"
authors = ["Pavel Ivanov <mr.pavel.ivanov@gmail.com>"]
version = "0.29.9"
edition = "2021"
license = "MIT"
[package]
name = "hl"
description = "JSON and logfmt log converter to human readable representation"
categories = ["command-line-utilities"]
keywords = ["cli", "human", "log"]
build = "build.rs"
repository.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
version.workspace = true
[build-dependencies]
capnpc = "0"
hex = "0"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["raw_value"] }
sha2 = "0"
[dependencies]
bincode = "1"
bytefmt = "0"
capnp = "0"
chrono = { version = "0", default-features = false, features = ["clock", "serde", "std"] }
chrono-tz = { version = "0", features = ["serde"] }
clap = { version = "4", features = ["wrap_help", "derive", "env", "string"] }
clap_complete = "4"
clap_mangen = "0"
closure = "0"
collection_macros = "0"
config = { version = "0", features = ["yaml", "json", "toml"] }
crossbeam-channel = "0"
crossbeam-queue = "0"
crossbeam-utils = "0"
derive_deref = "1"
dirs = "5"
dirs-sys = "0"
encstr = { path = "./crate/encstr" }
enum-map = "2"
enumset = "1"
enumset-ext = { path = "./crate/enumset-ext" }
flate2 = "1"
heapless = "0"
hex = "0"
htp = { git = "https://github.com/pamburus/htp.git" }
humantime = "2"
itertools = "0.13"
itoa = { version = "1", default-features = false }
notify = { version = "7", features = ["macos_kqueue"] }
nu-ansi-term = "0"
num_cpus = "1"
once_cell = "1"
pest = "2"
pest_derive = "2"
regex = "1"
rust-embed = "8"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["raw_value"] }
serde_yml = "0"
serde-logfmt = { path = "./crate/serde-logfmt" }
sha2 = "0"
shellwords = "1"
signal-hook = "0"
snap = "1"
strum = { version = "0", features = ["derive"] }
thiserror = "2"
titlecase = "3"
toml = "0"
wildflower = { git = "https://github.com/cassaundra/wildflower.git" }
winapi-util = { version = "0" }
wyhash = "0"
[target.'cfg(target_os = "macos")'.dependencies]
kqueue = "1"
[dev-dependencies]
byte-strings = "0"
criterion = "0"
maplit = "1"
stats_alloc = "0"
regex = "1"
wildmatch = "2"
[profile.release]
debug = false
opt-level = 3
codegen-units = 1
lto = true
[[bench]]
name = "regex"
harness = false
[[bench]]
name = "ts-parse"
harness = false
[[bench]]
name = "ts-format"
harness = false
[[bench]]
name = "wildmatch"
harness = false
[[bench]]
name = "wildflower"
harness = false
[[bench]]
name = "theme"
harness = false
[[bench]]
name = "parse-and-format"
harness = false
[[bench]]
name = "string"
harness = false
[[bench]]
name = "json"
harness = false
[[bench]]
name = "mem"
harness = false
[[bench]]
name = "encstr"
path = "benches/encstr/benches.rs"
harness = false