diff --git a/Cargo.lock b/Cargo.lock index 5ef01ca..a31bb01 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5,7 +5,6 @@ dependencies = [ "ansi_term 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", "clap 1.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "clog 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "regex_macros 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)", "semver 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.33 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -85,14 +84,6 @@ name = "regex-syntax" version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -[[package]] -name = "regex_macros" -version = "0.1.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "regex 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "rustc-serialize" version = "0.3.16" diff --git a/Cargo.toml b/Cargo.toml index d0643a6..11a8b25 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,10 +18,6 @@ clap = "~1.4" time = "~0.1.32" clog = "~0.9.0" -[dependencies.regex_macros] -version = "~0.1.21" -optional = true - [dependencies.ansi_term] version = "~0.6.3" optional = true @@ -34,7 +30,4 @@ color = ["ansi_term"] # For debugging output debug = [] -# for building with nightly and unstable features -# until regex_macros compiles with nightly again, this should be commented out -# unstable = ["regex_macros"] unstable = []