diff options
| author | KyleMiles <krm504@nyu.edu> | 2022-08-29 16:25:03 -0400 |
|---|---|---|
| committer | KyleMiles <krm504@nyu.edu> | 2022-08-29 17:50:43 -0400 |
| commit | 3ae2ea8f069a448e4e3344d4467b019f860d2560 (patch) | |
| tree | 4415db642a824e5a90a7b74de5074eafb673e587 /rust/src | |
| parent | 995ce65e1c59cb276dd9ca77fe216a8b7639db9d (diff) | |
Add Rust docs to CI (see https://dev-rust.binary.ninja 🎉)
Diffstat (limited to 'rust/src')
| -rw-r--r-- | rust/src/lib.rs | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/rust/src/lib.rs b/rust/src/lib.rs index 414d8738..296e6934 100644 --- a/rust/src/lib.rs +++ b/rust/src/lib.rs @@ -12,11 +12,20 @@ // See the License for the specific language governing permissions and // limitations under the License. +#![doc(html_favicon_url = "../favicon.ico")] +#![doc(html_logo_url = "../logo.png")] +#![doc(issue_tracker_base_url = "https://github.com/Vector35/binaryninja-api/issues/")] + //! # Warning +//! <img align="right" src="../under_construction.png" width="175" height="175"> +//! //! > ⚠️ **These bindings are in a very early beta, only have partial support for the core APIs and are still actively under development. Compatibility _will_ break and conventions _will_ change! They are being used for core Binary Ninja features however, so we expect much of what is already there to be reliable enough to build on, just don't be surprised if your plugins/scripts need to hit a moving target.** +//! +//! > ⚠️ This project runs on Rust version `stable-2022-04-07` #[macro_use] extern crate log; +#[doc(hidden)] pub extern crate binaryninjacore_sys; extern crate libc; #[cfg(feature = "rayon")] @@ -46,7 +55,6 @@ pub mod callingconvention; pub mod command; pub mod custombinaryview; pub mod databuffer; -pub mod datavariable; pub mod debuginfo; pub mod demangle; pub mod disassembly; |
