Merge pull request #1437 from upsuper/upgrade-regex

Upgrade regex to 0.2
This commit is contained in:
Oliver Schneider 2017-01-11 15:17:43 +01:00 committed by GitHub
commit 1f73952dec
2 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "clippy"
version = "0.0.106"
version = "0.0.107"
authors = [
"Manish Goregaokar <manishsmail@gmail.com>",
"Andre Bogus <bogusandre@gmail.com>",
@ -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"

View File

@ -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 <manishsmail@gmail.com>",
@ -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"