-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
36 lines (31 loc) · 1007 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
[package]
name = "jlf"
version = "0.1.13"
edition = "2021"
authors = ["Jack Lee <jack.y.l.dev@gmail.com>"]
description = "CLI for converting JSON logs to human-readable format"
categories = ["command-line-interface"]
keywords = ["json", "log", "jl", "format", "cli"]
documentation = "https://docs.rs/jlf"
repository = "https://github.com/poonesnerfect/jlf"
license = "MIT OR Apache-2.0"
rust-version = "1.56"
[lib]
path = "src/lib.rs"
name = "jlf"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5", features = ["derive"] }
color-eyre = "0.6.2"
owo-colors = { version = "4.0.0", features = ["alloc", "supports-colors"] }
smallvec = "1.13.2"
strip-ansi-escapes = "=0.2.0"
thiserror = "1.0.61"
tosserror = "0.1.2"
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
[[bench]]
name = "parse_json"
harness = false