Skip to content

Commit 2293ea5

Browse files
authored
Rollup merge of rust-lang#37149 - edunham:more-cargotest, r=alexcrichton
Add some more repos to cargotest From suggestions at https://users.rust-lang.org/t/what-stable-rust-applications-do-you-use-frequently/7618 This adds some applications which use stable Rust and come with their own lockfiles in their respective trees. ripgrep, xsv, and bins have 33 unique dependencies between them. I alphabetized the list by project name because that seems tidier. r? @brson
2 parents e7c788a + a0f3c93 commit 2293ea5

File tree

1 file changed

+38
-13
lines changed

1 file changed

+38
-13
lines changed

src/tools/cargotest/main.rs

Lines changed: 38 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,44 @@ struct Test {
2121
lock: Option<&'static str>,
2222
}
2323

24-
const TEST_REPOS: &'static [Test] = &[Test {
25-
name: "cargo",
26-
repo: "https://github.com/rust-lang/cargo",
27-
sha: "b7be4f2ef2cf743492edc6dfb55d087ed88f2d76",
28-
lock: None,
29-
},
30-
Test {
31-
name: "iron",
32-
repo: "https://github.com/iron/iron",
33-
sha: "16c858ec2901e2992fe5e529780f59fa8ed12903",
34-
lock: Some(include_str!("lockfiles/iron-Cargo.lock")),
35-
}];
36-
24+
const TEST_REPOS: &'static [Test] = &[
25+
Test {
26+
name: "cargo",
27+
repo: "https://github.com/rust-lang/cargo",
28+
sha: "b7be4f2ef2cf743492edc6dfb55d087ed88f2d76",
29+
lock: None,
30+
},
31+
Test {
32+
name: "iron",
33+
repo: "https://github.com/iron/iron",
34+
sha: "16c858ec2901e2992fe5e529780f59fa8ed12903",
35+
lock: Some(include_str!("lockfiles/iron-Cargo.lock")),
36+
},
37+
Test {
38+
name: "ripgrep",
39+
repo: "https://github.com/BurntSushi/ripgrep",
40+
sha: "b65bb37b14655e1a89c7cd19c8b011ef3e312791",
41+
lock: None,
42+
},
43+
Test {
44+
name: "tokei",
45+
repo: "https://github.com/Aaronepower/tokei",
46+
sha: "5e11c4852fe4aa086b0e4fe5885822fbe57ba928",
47+
lock: None,
48+
},
49+
Test {
50+
name: "treeify",
51+
repo: "https://github.com/dzamlo/treeify",
52+
sha: "999001b223152441198f117a68fb81f57bc086dd",
53+
lock: None,
54+
},
55+
Test {
56+
name: "xsv",
57+
repo: "https://github.com/BurntSushi/xsv",
58+
sha: "5ec4fff4a3f507eda887049469897f02c6fae036",
59+
lock: None,
60+
},
61+
];
3762

3863
fn main() {
3964
// One of the projects being tested here is Cargo, and when being tested

0 commit comments

Comments
 (0)