From dd4f6794113b41a56f1baaa85d2251c7f2691ec4 Mon Sep 17 00:00:00 2001 From: John Nagle Date: Mon, 2 Feb 2015 11:43:03 -0800 Subject: [PATCH] Avoid duplicate import of regex macros, which causes problems with linking the crate into an enclosing crate. --- src/parse.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/parse.rs b/src/parse.rs index f424fd9..57dc156 100644 --- a/src/parse.rs +++ b/src/parse.rs @@ -1,5 +1,3 @@ -extern crate regex_macros; // for compile-time regular expression compilation -extern crate regex; use std::num::Int; use std::cmp; use ::{Offset};