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(
934934 }
935935
936936 let possibilities = loop {
937- match registry. query_vec ( & query, QueryKind :: Fuzzy ) {
937+ match registry. query_vec ( & query, QueryKind :: Exact ) {
938938 std:: task:: Poll :: Ready ( res) => {
939939 break res?;
940940 }
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ fn case() {
5555 ] )
5656 . current_dir ( cwd)
5757 . assert ( )
58- . failure ( )
58+ . success ( )
5959 . stdout_matches_path ( curr_dir ! ( ) . join ( "stdout.log" ) )
6060 . stderr_matches_path ( curr_dir ! ( ) . join ( "stderr.log" ) ) ;
6161
Original file line number Diff line number Diff line change 33[package ]
44name = " cargo-list-test-fixture"
55version = " 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 11 Updating git repository `[ROOTURL]/git-package`
22 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