path, fs, and io are no longer feature gated

without.crypto
Dan Burkert 10 years ago
parent b6f3b7b9cc
commit 28660edc12
  1. 2
      lmdb-sys/build.rs
  2. 4
      src/lib.rs

@ -1,5 +1,3 @@
#![feature(path)]
extern crate "pkg-config" as pkg_config; extern crate "pkg-config" as pkg_config;
extern crate gcc; extern crate gcc;

@ -1,8 +1,8 @@
//! Idiomatic and safe APIs for interacting with the //! Idiomatic and safe APIs for interacting with the
//! [Symas Lightning Memory-Mapped Database (LMDB)](http://symas.com/mdb/). //! [Symas Lightning Memory-Mapped Database (LMDB)](http://symas.com/mdb/).
#![feature(core, libc, optin_builtin_traits, path, std_misc, unsafe_destructor)] #![feature(core, libc, optin_builtin_traits, std_misc, unsafe_destructor)]
#![cfg_attr(test, feature(fs, io, tempdir, test))] #![cfg_attr(test, feature(tempdir, test))]
extern crate libc; extern crate libc;
extern crate "lmdb-sys" as ffi; extern crate "lmdb-sys" as ffi;

Loading…
Cancel
Save