-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathCargo.toml
116 lines (108 loc) · 2.64 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
[workspace]
members = [".", "crate/encstr", "crate/heapopt"]
[workspace.package]
repository = "https://github.com/pamburus/hl"
authors = ["Pavel Ivanov <[email protected]>"]
version = "0.31.0-alpha.8"
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"
deko = "0"
derive_more = {version="2", features = ["deref", "from"]}
dirs = "6"
dirs-sys = "0"
encstr = { path = "./crate/encstr" }
enum-map = "2"
enumset = "1"
enumset-ext = { path = "./crate/enumset-ext" }
env_logger = "0"
flate2 = "1"
heapless = "0"
heapopt = { path = "./crate/heapopt" }
hex = "0"
htp = { git = "https://github.com/pamburus/htp.git" }
humantime = "2"
itertools = "0.14"
itoa = { version = "1", default-features = false }
known-folders = "1"
log = "0"
nonzero_ext = "0"
notify = { version = "8", 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"
wild = "2"
wildflower = { git = "https://github.com/cassaundra/wildflower.git" }
winapi-util = { version = "0" }
wyhash = "0"
[target.'cfg(target_os = "macos")'.dependencies]
kqueue = "1"
[dev-dependencies]
base32 = "0"
byte-strings = "0"
clean-path = "0"
const-str = "0"
criterion = "0"
fnv = "1"
maplit = "1"
mockall = "0"
stats_alloc = "0"
rand = "0"
regex = "1"
wildmatch = "2"
rstest = "0"
[profile.release]
debug = false
opt-level = 3
codegen-units = 1
lto = true
[[bench]]
name = "bench"
harness = false