-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (36 loc) · 1.13 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
[package]
name = "journald-broker"
version = "0.7.0"
authors = ["Bhanupong Petchlert <bpetlert@gmail.com>"]
description = "A log-based event dispatcher daemon for systemd's journal"
documentation = "https://github.com/bpetlert/journald-broker"
homepage = "https://github.com/bpetlert/journald-broker"
license = "GPL-3.0-or-later"
readme = "README.adoc"
repository = "https://github.com/bpetlert/journald-broker"
edition = "2021"
publish = false
[dependencies]
anyhow = "~1"
clap = { version = "~4.5", features = ["derive"] }
config = { version = "~0.14", default-features = false, features = ["toml"] }
humantime-serde = "~1.1"
mimalloc = { version = "~0.1", features = ["secure"] }
regex = "~1.10"
serde = { version = "~1.0", features = ["derive"] }
serde_json = "~1.0"
systemd = { version = "~0.10", default-features = false, features = [
"journal",
] }
tracing = { version = "~0.1", features = [
"max_level_debug",
"release_max_level_debug",
] }
tracing-subscriber = { version = "~0.3", default-features = false, features = [
"env-filter",
"fmt",
] }
wait-timeout = "~0.2"
walkdir = "~2.5"
[dev-dependencies]
tempfile = "~3.10"