File tree 4 files changed +4
-1
lines changed
4 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ path = "main.rs"
51
51
}
52
52
53
53
fn set_sources ( config : & mut Config ) -> anyhow:: Result < ( ) > {
54
- let path_iterator = glob ( "*.rs" ) . context ( "globbing test sources" ) ?;
54
+ let path_iterator = glob ( "**/* .rs" ) . context ( "globbing test sources" ) ?;
55
55
config. inputs = path_iterator
56
56
. collect :: < Result < Vec < _ > , _ > > ( )
57
57
. context ( "fetching test sources" ) ?;
Original file line number Diff line number Diff line change 2
2
| a_file.rs:0:0:0:0 | a_file.rs | fromSource: yes |
3
3
| another_file.rs:0:0:0:0 | another_file.rs | fromSource: yes |
4
4
| lib.rs:0:0:0:0 | lib.rs | fromSource: yes |
5
+ | nested.rs:0:0:0:0 | nested.rs | fromSource: yes |
6
+ | nested/file.rs:0:0:0:0 | nested/file.rs | fromSource: yes |
Original file line number Diff line number Diff line change
1
+ mod file;
You can’t perform that action at this time.
0 commit comments