File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -163,6 +163,7 @@ pub mod sync;
163
163
164
164
/* Runtime and platform support */
165
165
166
+ #[ unstable]
166
167
pub mod libc;
167
168
pub mod c_str;
168
169
pub mod os;
@@ -172,9 +173,8 @@ pub mod rand;
172
173
pub mod run;
173
174
pub mod cast;
174
175
pub mod fmt;
175
- pub mod repr;
176
176
pub mod cleanup;
177
- pub mod reflect ;
177
+ # [ deprecated ]
178
178
pub mod condition;
179
179
pub mod logging;
180
180
pub mod util;
@@ -183,7 +183,13 @@ pub mod mem;
183
183
184
184
/* Unsupported interfaces */
185
185
186
+ #[ unstable]
187
+ pub mod repr;
188
+ #[ unstable]
189
+ pub mod reflect;
190
+
186
191
// Private APIs
192
+ #[ unstable]
187
193
pub mod unstable;
188
194
189
195
@@ -195,6 +201,7 @@ mod cmath;
195
201
196
202
// FIXME #7809: This shouldn't be pub, and it should be reexported under 'unstable'
197
203
// but name resolution doesn't work without it being pub.
204
+ #[ unstable]
198
205
pub mod rt;
199
206
200
207
// A curious inner-module that's not exported that contains the binding
You can’t perform that action at this time.
0 commit comments