File tree 4 files changed +21
-0
lines changed
collector/compile-benchmarks
4 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,8 @@ They mostly consist of real-world crates.
23
23
` N ` value from 1 to 1024.
24
24
- ** cargo-0.60.0** : The Rust package manager. A large program, and an important
25
25
part of the Rust ecosystem.
26
+ - ** cargo-0.87.1** : The Rust package manager. A large program, and an important
27
+ part of the Rust ecosystem.
26
28
- ** clap-3.1.6** : A command line argument parser library. A crate used by many
27
29
Rust programs.
28
30
- ** cranelift-codegen-0.82.1** : The largest crate from a code generator. Used by
Original file line number Diff line number Diff line change @@ -32,6 +32,11 @@ path = "cargo-0.60.0/**"
32
32
SPDX-FileCopyrightText = " The Rust Project Developers (see https://thanks.rust-lang.org)"
33
33
SPDX-License-Identifier = " MIT OR Apache-2.0"
34
34
35
+ [[annotations ]]
36
+ path = " cargo-0.87.1/**"
37
+ SPDX-FileCopyrightText = " The Rust Project Developers (see https://thanks.rust-lang.org)"
38
+ SPDX-License-Identifier = " MIT OR Apache-2.0"
39
+
35
40
[[annotations ]]
36
41
path = " clap-3.1.6/**"
37
42
SPDX-FileCopyrightText = " clap contributors"
Original file line number Diff line number Diff line change
1
+ diff --git a/src/cargo/sources/path.rs b/src/cargo/sources/path.rs
2
+ index c1e81528..7ae91667 100644
3
+ --- a/src/cargo/sources/path.rs
4
+ +++ b/src/cargo/sources/path.rs
5
+ @@ -58,6 +58,7 @@ impl<'gctx> PathSource<'gctx> {
6
+ /// Preloads a package for this source. The source is assumed that it has
7
+ /// yet loaded any other packages.
8
+ pub fn preload_with(pkg: Package, gctx: &'gctx GlobalContext) -> Self {
9
+ + println!("testing");
10
+ let source_id = pkg.package_id().source_id();
11
+ let path = pkg.root().to_owned();
12
+ Self {
Original file line number Diff line number Diff line change @@ -393,3 +393,5 @@ rust_2018_idioms = "warn"
393
393
394
394
[lints .rustdoc ]
395
395
private_intra_doc_links = " allow"
396
+
397
+ [workspace ]
You can’t perform that action at this time.
0 commit comments