Allow use of unstable APIs

This commit is contained in:
John Gallagher 2015-01-10 20:58:42 -06:00
parent 680056b351
commit b57322e2ca

View File

@ -2,6 +2,7 @@
//! an interface similar to [rust-postgres](https://github.com/sfackler/rust-postgres). //! an interface similar to [rust-postgres](https://github.com/sfackler/rust-postgres).
//! //!
//! ```rust //! ```rust
//! #![allow(unstable)]
//! extern crate rusqlite; //! extern crate rusqlite;
//! extern crate time; //! extern crate time;
//! //!
@ -48,6 +49,7 @@
//! } //! }
//! ``` //! ```
#![feature(unsafe_destructor)] #![feature(unsafe_destructor)]
#![allow(unstable)]
extern crate libc; extern crate libc;