From 3ae2ea8f069a448e4e3344d4467b019f860d2560 Mon Sep 17 00:00:00 2001 From: KyleMiles Date: Mon, 29 Aug 2022 16:25:03 -0400 Subject: Add Rust docs to CI (see https://dev-rust.binary.ninja 🎉) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- rust/src/lib.rs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'rust/src') 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 +//! +//! //! > ⚠️ **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; -- cgit v1.3.1