mirror of
https://framagit.org/ppom/reaction
synced 2026-03-14 12:45:47 +01:00
38 lines
1.1 KiB
TOML
38 lines
1.1 KiB
TOML
[package]
|
|
name = "reaction"
|
|
version = "2.0.0-rc1"
|
|
edition = "2021"
|
|
authors = ["ppom <reaction@ppom.me"]
|
|
license = "AGPL-3.0"
|
|
description = "Scan logs and take action"
|
|
readme = "README.md"
|
|
homepage = "https://reaction.ppom.me"
|
|
repository = "https://framagit.org/ppom/reaction"
|
|
keywords = ["security", "sysadmin", "fail2ban", "logs", "monitoring"]
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
bincode = "1.3.3"
|
|
chrono = { version = "0.4.38", features = ["std", "clock"] }
|
|
clap = { version = "4.5.4", features = ["derive"] }
|
|
jrsonnet-evaluator = "0.4.2"
|
|
num_cpus = "1.16.0"
|
|
regex = "1.10.4"
|
|
serde = { version = "1.0.203", features = ["derive"] }
|
|
serde_json = "1.0.117"
|
|
serde_yaml = "0.9.34"
|
|
tempfile = "3.12.0"
|
|
thiserror = "1.0.63"
|
|
timer = "0.2.0"
|
|
futures = "0.3.30"
|
|
tokio = { version = "1.40.0", features = ["full", "tracing"] }
|
|
tokio-util = { version = "0.7.12", features = ["codec"] }
|
|
tracing = "0.1.40"
|
|
tracing-subscriber = "0.3.18"
|
|
|
|
[build-dependencies]
|
|
clap = { version = "4.5.4", features = ["derive"] }
|
|
clap_complete = "4.5.2"
|
|
clap_mangen = "0.2.24"
|
|
regex = "1.10.4"
|
|
tracing = "0.1.40"
|