From 00e6d43a074b88b7e04f562356b642497b99ca50 Mon Sep 17 00:00:00 2001 From: Xidorn Quan Date: Wed, 11 Jan 2017 22:44:46 +1100 Subject: [PATCH] Upgrade regex to 0.2 --- Cargo.toml | 6 +++--- clippy_lints/Cargo.toml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e0a90c494..9b05601af 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clippy" -version = "0.0.106" +version = "0.0.107" authors = [ "Manish Goregaokar ", "Andre Bogus ", @@ -25,13 +25,13 @@ test = false [dependencies] # begin automatic update -clippy_lints = { version = "0.0.106", path = "clippy_lints" } +clippy_lints = { version = "0.0.107", path = "clippy_lints" } # end automatic update [dev-dependencies] compiletest_rs = "0.2.5" lazy_static = "0.1.15" -regex = "0.1.71" +regex = "0.2" rustc-serialize = "0.3" clippy-mini-macro-test = { version = "0.1", path = "mini-macro" } serde = "0.7" diff --git a/clippy_lints/Cargo.toml b/clippy_lints/Cargo.toml index 309340cbc..63c85173c 100644 --- a/clippy_lints/Cargo.toml +++ b/clippy_lints/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "clippy_lints" # begin automatic update -version = "0.0.106" +version = "0.0.107" # end automatic update authors = [ "Manish Goregaokar ", @@ -17,7 +17,7 @@ keywords = ["clippy", "lint", "plugin"] [dependencies] matches = "0.1.2" -regex-syntax = "0.3.0" +regex-syntax = "0.4.0" semver = "0.2.1" toml = "0.1" unicode-normalization = "0.1"