File tree 3 files changed +53
-4
lines changed
3 files changed +53
-4
lines changed Original file line number Diff line number Diff line change @@ -283,7 +283,12 @@ impl SourceId {
283
283
Ok ( p) => p,
284
284
Err ( ( ) ) => panic ! ( "path sources cannot be remote" ) ,
285
285
} ;
286
- Ok ( Box :: new ( RegistrySource :: local ( self , & path, config) ) )
286
+ Ok ( Box :: new ( RegistrySource :: local (
287
+ self ,
288
+ & path,
289
+ yanked_whitelist,
290
+ config,
291
+ ) ) )
287
292
}
288
293
Kind :: Directory => {
289
294
let path = match self . inner . url . to_file_path ( ) {
Original file line number Diff line number Diff line change @@ -404,15 +404,20 @@ impl<'cfg> RegistrySource<'cfg> {
404
404
)
405
405
}
406
406
407
- pub fn local ( source_id : SourceId , path : & Path , config : & ' cfg Config ) -> RegistrySource < ' cfg > {
407
+ pub fn local (
408
+ source_id : SourceId ,
409
+ path : & Path ,
410
+ yanked_whitelist : & HashSet < PackageId > ,
411
+ config : & ' cfg Config ,
412
+ ) -> RegistrySource < ' cfg > {
408
413
let name = short_name ( source_id) ;
409
414
let ops = local:: LocalRegistry :: new ( path, config, & name) ;
410
415
RegistrySource :: new (
411
416
source_id,
412
417
config,
413
418
& name,
414
419
Box :: new ( ops) ,
415
- & HashSet :: new ( ) ,
420
+ yanked_whitelist ,
416
421
false ,
417
422
)
418
423
}
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ use std::fs::{self, File};
2
2
use std:: io:: prelude:: * ;
3
3
4
4
use crate :: support:: paths:: { self , CargoPathExt } ;
5
- use crate :: support:: registry:: Package ;
5
+ use crate :: support:: registry:: { registry_path , Package } ;
6
6
use crate :: support:: { basic_manifest, project} ;
7
7
8
8
fn setup ( ) {
@@ -61,6 +61,45 @@ fn simple() {
61
61
p. cargo ( "test" ) . run ( ) ;
62
62
}
63
63
64
+ #[ test]
65
+ fn depend_on_yanked ( ) {
66
+ setup ( ) ;
67
+ Package :: new ( "bar" , "0.0.1" ) . local ( true ) . publish ( ) ;
68
+
69
+ let p = project ( )
70
+ . file (
71
+ "Cargo.toml" ,
72
+ r#"
73
+ [project]
74
+ name = "foo"
75
+ version = "0.0.1"
76
+ authors = []
77
+
78
+ [dependencies]
79
+ bar = "0.0.1"
80
+ "# ,
81
+ )
82
+ . file ( "src/lib.rs" , "" )
83
+ . build ( ) ;
84
+
85
+ // Run cargo to create lock file.
86
+ p. cargo ( "check" ) . run ( ) ;
87
+
88
+ registry_path ( ) . join ( "index" ) . join ( "3" ) . rm_rf ( ) ;
89
+ Package :: new ( "bar" , "0.0.1" )
90
+ . local ( true )
91
+ . yanked ( true )
92
+ . publish ( ) ;
93
+
94
+ p. cargo ( "check" )
95
+ . with_stderr (
96
+ "\
97
+ [FINISHED] [..]
98
+ " ,
99
+ )
100
+ . run ( ) ;
101
+ }
102
+
64
103
#[ test]
65
104
fn multiple_versions ( ) {
66
105
setup ( ) ;
You can’t perform that action at this time.
0 commit comments