Update dependencies
This commit is contained in:
parent
ccc087ed62
commit
43ed2065cc
6 changed files with 32 additions and 34 deletions
22
Cargo.toml
22
Cargo.toml
|
@ -21,37 +21,35 @@ name = "clippy-driver"
|
||||||
path = "src/driver.rs"
|
path = "src/driver.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# begin automatic update
|
clippy_lints = { version = "0.1", path = "clippy_lints" }
|
||||||
clippy_lints = { version = "0.1.50", path = "clippy_lints" }
|
|
||||||
# end automatic update
|
|
||||||
semver = "0.11"
|
semver = "0.11"
|
||||||
rustc_tools_util = { version = "0.2.0", path = "rustc_tools_util" }
|
rustc_tools_util = { version = "0.2", path = "rustc_tools_util" }
|
||||||
tempfile = { version = "3.1.0", optional = true }
|
tempfile = { version = "3.2", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
cargo_metadata = "0.12"
|
cargo_metadata = "0.12"
|
||||||
compiletest_rs = { version = "0.6.0", features = ["tmp"] }
|
compiletest_rs = { version = "0.7", features = ["tmp"] }
|
||||||
tester = "0.9"
|
tester = "0.9"
|
||||||
regex = "1.4"
|
regex = "1.5"
|
||||||
# This is used by the `collect-metadata` alias.
|
# This is used by the `collect-metadata` alias.
|
||||||
filetime = "0.2"
|
filetime = "0.2"
|
||||||
|
|
||||||
# A noop dependency that changes in the Rust repository, it's a bit of a hack.
|
# A noop dependency that changes in the Rust repository, it's a bit of a hack.
|
||||||
# See the `src/tools/rustc-workspace-hack/README.md` file in `rust-lang/rust`
|
# See the `src/tools/rustc-workspace-hack/README.md` file in `rust-lang/rust`
|
||||||
# for more information.
|
# for more information.
|
||||||
rustc-workspace-hack = "1.0.0"
|
rustc-workspace-hack = "1.0"
|
||||||
|
|
||||||
# UI test dependencies
|
# UI test dependencies
|
||||||
clippy_utils = { path = "clippy_utils" }
|
clippy_utils = { path = "clippy_utils" }
|
||||||
derive-new = "0.5"
|
derive-new = "0.5"
|
||||||
if_chain = "1.0"
|
if_chain = "1.0"
|
||||||
itertools = "0.10.1"
|
itertools = "0.10"
|
||||||
quote = "1"
|
quote = "1.0"
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
syn = { version = "1", features = ["full"] }
|
syn = { version = "1.0", features = ["full"] }
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
rustc_tools_util = { version = "0.2.0", path = "rustc_tools_util" }
|
rustc_tools_util = { version = "0.2", path = "rustc_tools_util" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
deny-warnings = ["clippy_lints/deny-warnings"]
|
deny-warnings = ["clippy_lints/deny-warnings"]
|
||||||
|
|
|
@ -6,11 +6,11 @@ edition = "2018"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bytecount = "0.6"
|
bytecount = "0.6"
|
||||||
clap = "2.33"
|
clap = "2.33"
|
||||||
itertools = "0.9"
|
itertools = "0.10"
|
||||||
opener = "0.5"
|
opener = "0.5"
|
||||||
regex = "1"
|
regex = "1.5"
|
||||||
shell-escape = "0.1"
|
shell-escape = "0.1"
|
||||||
walkdir = "2"
|
walkdir = "2.3"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
deny-warnings = []
|
deny-warnings = []
|
||||||
|
|
|
@ -13,4 +13,4 @@ keywords = ["clippy", "lint", "plugin"]
|
||||||
categories = ["development-tools", "development-tools::cargo-plugins"]
|
categories = ["development-tools", "development-tools::cargo-plugins"]
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
term = "0.6"
|
term = "0.7"
|
||||||
|
|
|
@ -11,21 +11,21 @@ edition = "2018"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cargo_metadata = "0.12"
|
cargo_metadata = "0.12"
|
||||||
clippy_utils = { path = "../clippy_utils" }
|
clippy_utils = { path = "../clippy_utils" }
|
||||||
if_chain = "1.0.0"
|
if_chain = "1.0"
|
||||||
itertools = "0.9"
|
itertools = "0.10"
|
||||||
pulldown-cmark = { version = "0.8", default-features = false }
|
pulldown-cmark = { version = "0.8", default-features = false }
|
||||||
quine-mc_cluskey = "0.2.2"
|
quine-mc_cluskey = "0.2"
|
||||||
regex-syntax = "0.6"
|
regex-syntax = "0.6"
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
serde_json = { version = "1.0", optional = true }
|
serde_json = { version = "1.0", optional = true }
|
||||||
toml = "0.5.3"
|
toml = "0.5"
|
||||||
unicode-normalization = "0.1"
|
unicode-normalization = "0.1"
|
||||||
unicode-script = { version = "0.5.3", default-features = false }
|
unicode-script = { version = "0.5", default-features = false }
|
||||||
semver = "0.11"
|
semver = "0.11"
|
||||||
rustc-semver = "1.1.0"
|
rustc-semver = "1.1"
|
||||||
# NOTE: cargo requires serde feat in its url dep
|
# NOTE: cargo requires serde feat in its url dep
|
||||||
# see <https://github.com/rust-lang/rust/pull/63587#issuecomment-522343864>
|
# see <https://github.com/rust-lang/rust/pull/63587#issuecomment-522343864>
|
||||||
url = { version = "2.1.0", features = ["serde"] }
|
url = { version = "2.2", features = ["serde"] }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
deny-warnings = ["clippy_utils/deny-warnings"]
|
deny-warnings = ["clippy_utils/deny-warnings"]
|
||||||
|
|
|
@ -5,8 +5,8 @@ edition = "2018"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
if_chain = "1.0.0"
|
if_chain = "1.0"
|
||||||
rustc-semver="1.1.0"
|
rustc-semver = "1.1"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
deny-warnings = []
|
deny-warnings = []
|
||||||
|
|
|
@ -11,15 +11,15 @@ publish = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
clap = "2.33"
|
clap = "2.33"
|
||||||
flate2 = {version = "1.0.19"}
|
flate2 = "1.0"
|
||||||
fs_extra = {version = "1.2.0"}
|
fs_extra = "1.2"
|
||||||
rayon = {version = "1.5.0"}
|
rayon = "1.5"
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
serde_json = {version = "1.0"}
|
serde_json = "1.0"
|
||||||
tar = {version = "0.4.30"}
|
tar = "0.4"
|
||||||
toml = {version = "0.5"}
|
toml = "0.5"
|
||||||
ureq = {version = "2.0.0-rc3"}
|
ureq = "2.2"
|
||||||
walkdir = {version = "2.3.2"}
|
walkdir = "2.3"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
deny-warnings = []
|
deny-warnings = []
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue