Skip to content

Commit a628223

Browse files
committed
Update dependencies
1 parent 83875ea commit a628223

File tree

6 files changed

+32
-34
lines changed

6 files changed

+32
-34
lines changed

src/tools/clippy/Cargo.toml

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -21,37 +21,35 @@ name = "clippy-driver"
2121
path = "src/driver.rs"
2222

2323
[dependencies]
24-
# begin automatic update
25-
clippy_lints = { version = "0.1.50", path = "clippy_lints" }
26-
# end automatic update
24+
clippy_lints = { version = "0.1", path = "clippy_lints" }
2725
semver = "0.11"
28-
rustc_tools_util = { version = "0.2.0", path = "rustc_tools_util" }
29-
tempfile = { version = "3.1.0", optional = true }
26+
rustc_tools_util = { version = "0.2", path = "rustc_tools_util" }
27+
tempfile = { version = "3.2", optional = true }
3028

3129
[dev-dependencies]
3230
cargo_metadata = "0.12"
33-
compiletest_rs = { version = "0.6.0", features = ["tmp"] }
31+
compiletest_rs = { version = "0.7", features = ["tmp"] }
3432
tester = "0.9"
35-
regex = "1.4"
33+
regex = "1.5"
3634
# This is used by the `collect-metadata` alias.
3735
filetime = "0.2"
3836

3937
# A noop dependency that changes in the Rust repository, it's a bit of a hack.
4038
# See the `src/tools/rustc-workspace-hack/README.md` file in `rust-lang/rust`
4139
# for more information.
42-
rustc-workspace-hack = "1.0.0"
40+
rustc-workspace-hack = "1.0"
4341

4442
# UI test dependencies
4543
clippy_utils = { path = "clippy_utils" }
4644
derive-new = "0.5"
4745
if_chain = "1.0"
48-
itertools = "0.10.1"
49-
quote = "1"
46+
itertools = "0.10"
47+
quote = "1.0"
5048
serde = { version = "1.0", features = ["derive"] }
51-
syn = { version = "1", features = ["full"] }
49+
syn = { version = "1.0", features = ["full"] }
5250

5351
[build-dependencies]
54-
rustc_tools_util = { version = "0.2.0", path = "rustc_tools_util" }
52+
rustc_tools_util = { version = "0.2", path = "rustc_tools_util" }
5553

5654
[features]
5755
deny-warnings = ["clippy_lints/deny-warnings"]

src/tools/clippy/clippy_dev/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ edition = "2018"
66
[dependencies]
77
bytecount = "0.6"
88
clap = "2.33"
9-
itertools = "0.9"
9+
itertools = "0.10"
1010
opener = "0.5"
11-
regex = "1"
11+
regex = "1.5"
1212
shell-escape = "0.1"
13-
walkdir = "2"
13+
walkdir = "2.3"
1414

1515
[features]
1616
deny-warnings = []

src/tools/clippy/clippy_dummy/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ keywords = ["clippy", "lint", "plugin"]
1313
categories = ["development-tools", "development-tools::cargo-plugins"]
1414

1515
[build-dependencies]
16-
term = "0.6"
16+
term = "0.7"

src/tools/clippy/clippy_lints/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,21 @@ edition = "2018"
1111
[dependencies]
1212
cargo_metadata = "0.12"
1313
clippy_utils = { path = "../clippy_utils" }
14-
if_chain = "1.0.0"
15-
itertools = "0.9"
14+
if_chain = "1.0"
15+
itertools = "0.10"
1616
pulldown-cmark = { version = "0.8", default-features = false }
17-
quine-mc_cluskey = "0.2.2"
17+
quine-mc_cluskey = "0.2"
1818
regex-syntax = "0.6"
1919
serde = { version = "1.0", features = ["derive"] }
2020
serde_json = { version = "1.0", optional = true }
21-
toml = "0.5.3"
21+
toml = "0.5"
2222
unicode-normalization = "0.1"
23-
unicode-script = { version = "0.5.3", default-features = false }
23+
unicode-script = { version = "0.5", default-features = false }
2424
semver = "0.11"
25-
rustc-semver = "1.1.0"
25+
rustc-semver = "1.1"
2626
# NOTE: cargo requires serde feat in its url dep
2727
# see <https://github.com/rust-lang/rust/pull/63587#issuecomment-522343864>
28-
url = { version = "2.1.0", features = ["serde"] }
28+
url = { version = "2.2", features = ["serde"] }
2929

3030
[features]
3131
deny-warnings = ["clippy_utils/deny-warnings"]

src/tools/clippy/clippy_utils/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ edition = "2018"
55
publish = false
66

77
[dependencies]
8-
if_chain = "1.0.0"
9-
rustc-semver="1.1.0"
8+
if_chain = "1.0"
9+
rustc-semver = "1.1"
1010

1111
[features]
1212
deny-warnings = []

src/tools/clippy/lintcheck/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ publish = false
1111

1212
[dependencies]
1313
clap = "2.33"
14-
flate2 = {version = "1.0.19"}
15-
fs_extra = {version = "1.2.0"}
16-
rayon = {version = "1.5.0"}
17-
serde = {version = "1.0", features = ["derive"]}
18-
serde_json = {version = "1.0"}
19-
tar = {version = "0.4.30"}
20-
toml = {version = "0.5"}
21-
ureq = {version = "2.0.0-rc3"}
22-
walkdir = {version = "2.3.2"}
14+
flate2 = "1.0"
15+
fs_extra = "1.2"
16+
rayon = "1.5"
17+
serde = { version = "1.0", features = ["derive"] }
18+
serde_json = "1.0"
19+
tar = "0.4"
20+
toml = "0.5"
21+
ureq = "2.2"
22+
walkdir = "2.3"
2323

2424
[features]
2525
deny-warnings = []

0 commit comments

Comments
 (0)