Skip to content

Commit 423f081

Browse files
committed
Auto merge of #10824 - klensy:url-no-serde, r=giraffate
deps: drop serde feature from url, drop rustc-workspace-hack Cargo now have it's own workspace and rustc dropped [`rustc-workspace-hack`](rust-lang/rust#109133), so no need to unify features here; drop rustc-workspace-hack. changelog: none
2 parents 7ee8fd7 + 066037b commit 423f081

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

Diff for: Cargo.toml

-5
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,6 @@ walkdir = "2.3"
3535
# This is used by the `collect-metadata` alias.
3636
filetime = "0.2"
3737

38-
# A noop dependency that changes in the Rust repository, it's a bit of a hack.
39-
# See the `src/tools/rustc-workspace-hack/README.md` file in `rust-lang/rust`
40-
# for more information.
41-
rustc-workspace-hack = "1.0"
42-
4338
# UI test dependencies
4439
clap = { version = "4.1.4", features = ["derive"] }
4540
clippy_utils = { path = "clippy_utils" }

Diff for: clippy_lints/Cargo.toml

+1-3
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,7 @@ unicode-normalization = "0.1"
2626
unicode-script = { version = "0.5", default-features = false }
2727
semver = "1.0"
2828
rustc-semver = "1.1"
29-
# NOTE: cargo requires serde feat in its url dep
30-
# see <https://github.com/rust-lang/rust/pull/63587#issuecomment-522343864>
31-
url = { version = "2.2", features = ["serde"] }
29+
url = "2.2"
3230

3331
[features]
3432
deny-warnings = ["clippy_utils/deny-warnings"]

0 commit comments

Comments
 (0)