Skip to main content

libsla_sys/
lib.rs

1//! This crate is a system crate that builds the
2//! [Ghidra](https://github.com/NationalSecurityAgency/ghidra) Sleigh library libsla for translating
3//! native code to p-code. It is not recommended to depend on this crate directly unless you are
4//! adding Rust bindings to interface with the library.
5
6pub mod api;
7pub mod rust;
8pub mod sys;
9
10// Reexport cxx crate for interfacing
11pub use cxx;