summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2023-05-04 19:18:17 +0200
committerGitHub <noreply@github.com>2023-05-04 19:18:17 +0200
commit0098cd4e83574a9e8771b2ac643d85e5e07e44a9 (patch)
tree1ddf66a75bb076d254e3bf210c44a47c0c9b5a18 /Cargo.lock
parenteac35583d2ffb5ed9e564dee0822c9a244058ee0 (diff)
parentfd4c81f4c19e3b1eb0710e50e04fb1f980b7e7ab (diff)
downloadrust-0098cd4e83574a9e8771b2ac643d85e5e07e44a9.tar.gz
Rollup merge of #108865 - Zoxc:library-dummy-crate, r=jyn514
Add a `sysroot` crate to represent the standard library crates This adds a dummy crate named `sysroot` to represent the standard library target instead of using the `test` crate. This allows the removal of `proc_macro` as a dependency of `test` allowing these 2 crates to build in parallel saving around 9 seconds locally.
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock10
1 files changed, 9 insertions, 1 deletions
diff --git a/Cargo.lock b/Cargo.lock
index c368b4a79d3..e69b36cb983 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -4740,6 +4740,15 @@ dependencies = [
]
[[package]]
+name = "sysroot"
+version = "0.0.0"
+dependencies = [
+ "proc_macro",
+ "std",
+ "test",
+]
+
+[[package]]
name = "tar"
version = "0.4.38"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -4823,7 +4832,6 @@ dependencies = [
"getopts",
"panic_abort",
"panic_unwind",
- "proc_macro",
"std",
]