mirror of
https://github.com/OISF/suricata.git
synced 2026-05-28 04:32:12 -04:00
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.
12 lines
234 B
TOML
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" }
|