suricata/examples/plugins/rust/Cargo.toml
Jason Ish f5bf76c0ee examples/plugins/rust: add a rust example plugin
Only demonstrates EVE callbacks for now, but I plan to turn this into a
show case of a variety of callbacks a Rust plugin can do as we add Rust
bindings to the ffi crate.
2026-04-16 05:58:15 +00:00

12 lines
234 B
TOML

[package]
name = "suricata-rust-plugin"
version = "0.1.0"
edition = "2021"
[lib]
path = "src/mod.rs"
crate-type = ["cdylib"]
[dependencies]
suricata-sys = { path = "../../../rust/sys" }
suricata-ffi = { path = "../../../rust/ffi" }