We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81a187e commit 6e6bc50Copy full SHA for 6e6bc50
src/comp/back/link.rs
@@ -249,6 +249,10 @@ mod write {
249
*
250
*/
251
iter crate_export_metas(&ast::crate c) -> @ast::meta_item {
252
+ for (ast::attribute attr in c.node.attrs) {
253
+ put @attr.node.value;
254
+ }
255
+
256
for (@ast::crate_directive cdir in c.node.directives) {
257
alt (cdir.node) {
258
case (ast::cdir_meta(?v, ?mis)) {
src/lib/std.rc
@@ -1,7 +1,7 @@
1
-meta export (name = "std",
2
- vers = "0.1",
3
- uuid = "122bed0b-c19b-4b82-b0b7-7ae8aead7297",
4
- url = "http://rust-lang.org/src/std");
+#[name = "std"];
+#[vers = "0.1"];
+#[uuid = "122bed0b-c19b-4b82-b0b7-7ae8aead7297"];
+#[url = "http://rust-lang.org/src/std"];
5
6
meta (comment = "Rust standard library",
7
license = "BSD");
0 commit comments