Auto merge of #14997 - lnicola:fix-warning, r=Veykril

internal: Fix dependency warning

Hope this doesn't break #14984 again.
This commit is contained in:
bors 2023-06-08 15:48:58 +00:00
commit 9c03aa1ac2
2 changed files with 1 additions and 3 deletions

1
Cargo.lock generated
View file

@ -1505,7 +1505,6 @@ dependencies = [
"parking_lot 0.12.1", "parking_lot 0.12.1",
"parking_lot_core 0.9.6", "parking_lot_core 0.9.6",
"proc-macro-api", "proc-macro-api",
"proc-macro-srv-cli",
"profile", "profile",
"project-model", "project-model",
"rayon", "rayon",

View file

@ -68,7 +68,6 @@ ide-db.workspace = true
ide-ssr.workspace = true ide-ssr.workspace = true
ide.workspace = true ide.workspace = true
proc-macro-api.workspace = true proc-macro-api.workspace = true
proc-macro-srv-cli.workspace = true
profile.workspace = true profile.workspace = true
project-model.workspace = true project-model.workspace = true
stdx.workspace = true stdx.workspace = true
@ -95,5 +94,5 @@ mbe.workspace = true
[features] [features]
jemalloc = ["jemallocator", "profile/jemalloc"] jemalloc = ["jemallocator", "profile/jemalloc"]
force-always-assert = ["always-assert/force"] force-always-assert = ["always-assert/force"]
sysroot-abi = ["proc-macro-srv-cli/sysroot-abi"] sysroot-abi = []
in-rust-tree = ["sysroot-abi", "ide/in-rust-tree", "syntax/in-rust-tree"] in-rust-tree = ["sysroot-abi", "ide/in-rust-tree", "syntax/in-rust-tree"]