From 35f4fea5950a003686cede5f6c43520cd45dc431 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Wed, 11 Feb 2015 11:36:28 -0800 Subject: [PATCH] Fix for upstream changes --- src/lib.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 2a620b8c..35936dd2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -53,14 +53,13 @@ #![doc(html_root_url="https://sfackler.github.io/rust-postgres/doc")] #![feature(plugin, unsafe_destructor, collections, io, core, path, std_misc)] #![warn(missing_docs)] +#![plugin(phf_macros)] extern crate byteorder; #[macro_use] extern crate log; extern crate openssl; extern crate phf; -#[plugin] #[no_link] -extern crate phf_macros; extern crate "rustc-serialize" as serialize; extern crate time;