Skip to content

Commit

Permalink
Turn off doctest due to bug in tooling rust-lang/cargo#8531
Browse files Browse the repository at this point in the history
  • Loading branch information
jackgerrits committed Aug 5, 2021
1 parent 9cf8f97 commit 1c3c339
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]

// The doctest must be turned off due to this issue: https://github.com/rust-lang/cargo/issues/8531

//! Rust bindings for the [VowpalWabbit](https://github.com/VowpalWabbit/vowpal_wabbit) C-binding surface.
//!
//! ### Example
//! The following is an example for a basic usecase similar to command line driver mode. VW is initialized, an example run through the parser then prediction pipeline. Finally the example and VW object are finished.
//! ```
//! The following is an example for a basic usecase similar to command line driver mode. VW is initialized, an example run through the parser then prediction pipeline. Finally the example and VW object are finished
//! ```no_run
//! use std::ffi::CString;
//!
//! unsafe {
Expand Down

0 comments on commit 1c3c339

Please sign in to comment.