Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: I9cc660c16187d07ee21f0a229b9fd1036a6a6964
33 lines
715 B
TOML
33 lines
715 B
TOML
[package]
|
|
name = "eris"
|
|
description = "Sophisticated HTTP tarpit and honeypot stream"
|
|
authors = ["NotAShelf <raf@notashelf.dev"]
|
|
version = "0.2.0"
|
|
edition = "2024"
|
|
rust-version = "1.91.0"
|
|
|
|
[dependencies]
|
|
actix-web = "4.13.0"
|
|
clap = { version = "4.5.60", features = ["derive"] }
|
|
chrono = "0.4.44"
|
|
futures = "0.3.32"
|
|
ipnetwork = "0.21.1"
|
|
lazy_static = "1.5.0"
|
|
prometheus = "0.14.0"
|
|
prometheus_exporter = "0.8.5"
|
|
rand = "0.10.0"
|
|
rlua = "0.20.1"
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
serde_json = "1.0.149"
|
|
tokio = { version = "1.49.0", features = ["full"] }
|
|
log = "0.4.29"
|
|
env_logger = "0.11.9"
|
|
thiserror = "2.0.18"
|
|
|
|
[lib]
|
|
name = "eris"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "eris"
|
|
path = "src/main.rs"
|