We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbe95a0 commit 59d05bcCopy full SHA for 59d05bc
1 file changed
tests/testsuite/vendor.rs
@@ -2277,6 +2277,16 @@ fn vendor_summary_output() {
2277
Package::new("bar", "0.1.0").publish();
2278
2279
p.cargo("vendor --respect-source-config")
2280
- .with_stderr_contains("[..]Vendored 1 crates into [..]vendor")
+ .with_stderr_data(str![[r#"
2281
+[UPDATING] `[..]` index
2282
+[LOCKING] 1 package to latest compatible version
2283
+[DOWNLOADING] crates ...
2284
+[DOWNLOADED] bar v0.1.0 (registry `[..]`)
2285
+ Vendoring bar v0.1.0 ([..]bar-0.1.0) to vendor/bar
2286
+To use vendored sources, add this to your .cargo/config.toml for this project:
2287
+
2288
+ Vendored 1 crates into vendor
2289
2290
+"#]])
2291
.run();
2292
}
0 commit comments