@@ -134,7 +134,7 @@ pub async fn test_object_no_send() {
134
134
}
135
135
136
136
// https://github.com/dtolnay/async-trait/issues/1
137
- mod issue1 {
137
+ pub mod issue1 {
138
138
use async_trait:: async_trait;
139
139
140
140
#[ async_trait]
@@ -149,7 +149,7 @@ mod issue1 {
149
149
}
150
150
151
151
// https://github.com/dtolnay/async-trait/issues/2
152
- mod issue2 {
152
+ pub mod issue2 {
153
153
use async_trait:: async_trait;
154
154
use std:: future:: Future ;
155
155
@@ -167,7 +167,7 @@ mod issue2 {
167
167
}
168
168
169
169
// https://github.com/dtolnay/async-trait/issues/9
170
- mod issue9 {
170
+ pub mod issue9 {
171
171
use async_trait:: async_trait;
172
172
173
173
#[ async_trait]
@@ -177,7 +177,7 @@ mod issue9 {
177
177
}
178
178
179
179
// https://github.com/dtolnay/async-trait/issues/11
180
- mod issue11 {
180
+ pub mod issue11 {
181
181
use async_trait:: async_trait;
182
182
use std:: sync:: Arc ;
183
183
@@ -195,7 +195,7 @@ mod issue11 {
195
195
}
196
196
197
197
// https://github.com/dtolnay/async-trait/issues/15
198
- mod issue15 {
198
+ pub mod issue15 {
199
199
use async_trait:: async_trait;
200
200
use std:: marker:: PhantomData ;
201
201
@@ -208,7 +208,7 @@ mod issue15 {
208
208
}
209
209
210
210
// https://github.com/dtolnay/async-trait/issues/17
211
- mod issue17 {
211
+ pub mod issue17 {
212
212
use async_trait:: async_trait;
213
213
214
214
#[ async_trait]
@@ -229,7 +229,7 @@ mod issue17 {
229
229
}
230
230
231
231
// https://github.com/dtolnay/async-trait/issues/23
232
- mod issue23 {
232
+ pub mod issue23 {
233
233
use async_trait:: async_trait;
234
234
235
235
#[ async_trait]
@@ -258,7 +258,7 @@ mod issue23 {
258
258
259
259
// https://github.com/dtolnay/async-trait/issues/25
260
260
#[ cfg( async_trait_nightly_testing) ]
261
- mod issue25 {
261
+ pub mod issue25 {
262
262
use crate :: executor;
263
263
use async_trait:: async_trait;
264
264
use std:: fmt:: { Display , Write } ;
@@ -304,7 +304,7 @@ mod issue25 {
304
304
}
305
305
306
306
// https://github.com/dtolnay/async-trait/issues/28
307
- mod issue28 {
307
+ pub mod issue28 {
308
308
use async_trait:: async_trait;
309
309
310
310
struct Str < ' a > ( & ' a str ) ;
0 commit comments