mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 13:13:34 +00:00
Merge pull request #1437 from upsuper/upgrade-regex
Upgrade regex to 0.2
This commit is contained in:
commit
1f73952dec
2 changed files with 5 additions and 5 deletions
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "clippy"
|
name = "clippy"
|
||||||
version = "0.0.106"
|
version = "0.0.107"
|
||||||
authors = [
|
authors = [
|
||||||
"Manish Goregaokar <manishsmail@gmail.com>",
|
"Manish Goregaokar <manishsmail@gmail.com>",
|
||||||
"Andre Bogus <bogusandre@gmail.com>",
|
"Andre Bogus <bogusandre@gmail.com>",
|
||||||
|
@ -25,13 +25,13 @@ test = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# begin automatic update
|
# begin automatic update
|
||||||
clippy_lints = { version = "0.0.106", path = "clippy_lints" }
|
clippy_lints = { version = "0.0.107", path = "clippy_lints" }
|
||||||
# end automatic update
|
# end automatic update
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
compiletest_rs = "0.2.5"
|
compiletest_rs = "0.2.5"
|
||||||
lazy_static = "0.1.15"
|
lazy_static = "0.1.15"
|
||||||
regex = "0.1.71"
|
regex = "0.2"
|
||||||
rustc-serialize = "0.3"
|
rustc-serialize = "0.3"
|
||||||
clippy-mini-macro-test = { version = "0.1", path = "mini-macro" }
|
clippy-mini-macro-test = { version = "0.1", path = "mini-macro" }
|
||||||
serde = "0.7"
|
serde = "0.7"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "clippy_lints"
|
name = "clippy_lints"
|
||||||
# begin automatic update
|
# begin automatic update
|
||||||
version = "0.0.106"
|
version = "0.0.107"
|
||||||
# end automatic update
|
# end automatic update
|
||||||
authors = [
|
authors = [
|
||||||
"Manish Goregaokar <manishsmail@gmail.com>",
|
"Manish Goregaokar <manishsmail@gmail.com>",
|
||||||
|
@ -17,7 +17,7 @@ keywords = ["clippy", "lint", "plugin"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
matches = "0.1.2"
|
matches = "0.1.2"
|
||||||
regex-syntax = "0.3.0"
|
regex-syntax = "0.4.0"
|
||||||
semver = "0.2.1"
|
semver = "0.2.1"
|
||||||
toml = "0.1"
|
toml = "0.1"
|
||||||
unicode-normalization = "0.1"
|
unicode-normalization = "0.1"
|
||||||
|
|
Loading…
Reference in a new issue