Fix for upstream changes

This commit is contained in:
Steven Fackler 2015-02-11 11:36:28 -08:00
parent 9214a6886d
commit 35f4fea595

View File

@ -53,14 +53,13 @@
#![doc(html_root_url="https://sfackler.github.io/rust-postgres/doc")] #![doc(html_root_url="https://sfackler.github.io/rust-postgres/doc")]
#![feature(plugin, unsafe_destructor, collections, io, core, path, std_misc)] #![feature(plugin, unsafe_destructor, collections, io, core, path, std_misc)]
#![warn(missing_docs)] #![warn(missing_docs)]
#![plugin(phf_macros)]
extern crate byteorder; extern crate byteorder;
#[macro_use] #[macro_use]
extern crate log; extern crate log;
extern crate openssl; extern crate openssl;
extern crate phf; extern crate phf;
#[plugin] #[no_link]
extern crate phf_macros;
extern crate "rustc-serialize" as serialize; extern crate "rustc-serialize" as serialize;
extern crate time; extern crate time;