-
Notifications
You must be signed in to change notification settings - Fork 16
/
Cargo.toml
51 lines (44 loc) · 1.06 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
[package]
authors = ["Pavel Ivanov <[email protected]>"]
categories = ["command-line-utilities"]
description = "Utility for viewing json-formatted log files."
keywords = ["cli", "human", "log"]
name = "hl"
version = "0.6.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ansi_term = "0.12"
anyhow = "1.0"
atoi = "0.3.2"
bitmask = "0.5"
chrono = { version = "0.4", features = ["serde"] }
closure = "0.3"
error-chain = "0.12"
flate2 = "1.0"
heapless = "0.5.5"
itertools = "0.9"
crossbeam-utils = "0.7"
crossbeam-queue = "0.2"
crossbeam-channel = "0.4"
isatty = "0.1"
num_cpus = "1.0"
structopt = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["raw_value"] }
shellwords = "1.1"
[dependencies.itoa]
version = "0.4.3"
default-features = false
[dev-dependencies]
criterion = "0.3"
diligent-date-parser = "0.1"
regex = "1"
[profile.release]
debug = true
[[bench]]
name = "ts_parse"
harness = false
[[bench]]
name = "ts_format"
harness = false