File tree Expand file tree Collapse file tree 4 files changed +8
-4
lines changed
tests/testsuite/cargo_add/git_multiple_packages_features Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -934,7 +934,7 @@ fn populate_available_features(
934
934
}
935
935
936
936
let possibilities = loop {
937
- match registry. query_vec ( & query, QueryKind :: Fuzzy ) {
937
+ match registry. query_vec ( & query, QueryKind :: Exact ) {
938
938
std:: task:: Poll :: Ready ( res) => {
939
939
break res?;
940
940
}
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ fn case() {
55
55
] )
56
56
. current_dir ( cwd)
57
57
. assert ( )
58
- . failure ( )
58
+ . success ( )
59
59
. stdout_matches_path ( curr_dir ! ( ) . join ( "stdout.log" ) )
60
60
. stderr_matches_path ( curr_dir ! ( ) . join ( "stderr.log" ) ) ;
61
61
Original file line number Diff line number Diff line change 3
3
[package ]
4
4
name = " cargo-list-test-fixture"
5
5
version = " 0.0.0"
6
+
7
+ [dependencies ]
8
+ package-with-feature = { git = " [ROOTURL]/git-package" , version = " 0.1.3" , features = [" target_feature" ] }
Original file line number Diff line number Diff line change 1
1
Updating git repository `[ROOTURL]/git-package`
2
2
Adding package-with-feature (git) to dependencies.
3
- error: unrecognized feature for crate package-with-feature: target_feature
4
- no features available for crate package-with-feature
3
+ Features:
4
+ + target_feature
5
+ Updating git repository `[ROOTURL]/git-package`
You can’t perform that action at this time.
0 commit comments