File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -108,6 +108,17 @@ macro_rules! cfg_unstable {
108
108
}
109
109
}
110
110
111
+ #[ allow( unused_macros) ]
112
+ macro_rules! cfg_fs_unstable {
113
+ ( $( $item: item) * ) => {
114
+ $(
115
+ #[ cfg( all( feature = "unstable" , feature = "fs" ) ) ]
116
+ #[ cfg_attr( docsrs, doc( cfg( all( feature = "unstable" , feature = "fs" ) ) ) ) ]
117
+ $item
118
+ ) *
119
+ }
120
+ }
121
+
111
122
pub mod aggregator_client;
112
123
cfg_unstable ! {
113
124
pub mod cardano_database_client;
Original file line number Diff line number Diff line change 3
3
4
4
cfg_fs ! {
5
5
mod stream_reader;
6
+
7
+ pub use stream_reader:: * ;
8
+ }
9
+
10
+ cfg_fs_unstable ! {
6
11
mod fs;
7
12
mod vec_deque_extensions;
8
13
9
- pub use stream_reader:: * ;
10
14
pub use fs:: * ;
11
15
pub use vec_deque_extensions:: VecDequeExtensions ;
12
16
}
You can’t perform that action at this time.
0 commit comments