[package]
name = "sentinel-agent-lua"
version = "0.1.0"
edition = "2021"
rust-version = "1.75"
authors = ["Sentinel Contributors"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/raskell-io/sentinel-agent-lua"
homepage = "https://sentinel.raskell.io"
documentation = "https://sentinel.raskell.io/docs/agents/lua"
description = "Lua scripting agent for Sentinel reverse proxy - custom logic via Lua scripts"
keywords = ["proxy", "reverse-proxy", "agent", "lua", "scripting"]
categories = ["network-programming"]
readme = "README.md"
[[bin]]
name = "sentinel-lua-agent"
path = "src/main.rs"
[dependencies]
sentinel-agent-protocol = "0.1"
sentinel-common = "0.1"
tokio = { version = "1.40", features = ["full", "sync"] }
async-trait = "0.1"
mlua = { version = "0.10", features = ["lua54", "vendored", "serialize", "send"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
anyhow = "1.0"
clap = { version = "4.5", features = ["derive", "env"] }
[dev-dependencies]
tempfile = "3.12"