@@ -67,9 +67,10 @@ Version 1.0.0-alpha (January 2015)
6767 characters] [ unicode ] .
6868 * ` macro_rules! ` [ has been declared stable] [ mac ] . Though it is a
6969 flawed system it is sufficiently popular that it must be usable
70- for 1.0. Effort has gone into future-proofing it in ways that
71- will allow other macro systems to be developed in parallel, and
72- won't otherwise impact the evolution of the language.
70+ for 1.0. Effort has gone into [ future-proofing] [ mac-future ] it
71+ in ways that will allow other macro systems to be developed in
72+ parallel, and won't otherwise impact the evolution of the
73+ language.
7374 * The prelude has been [ pared back significantly] [ prelude ] such
7475 that it is the minimum necessary to support the most pervasive
7576 code patterns, and through [ generalized where clauses] [ where ]
@@ -94,6 +95,9 @@ Version 1.0.0-alpha (January 2015)
9495 items or variants they contain is [ now done with ` self ` instead
9596 of ` mod ` ] [ self ] , as in use ` foo::{self, bar} `
9697 * Glob imports are no longer feature-gated.
98+ * The ` box ` operator and ` box ` patterns have been feature-gated
99+ pending a redesign. For now unique boxes should be allocated
100+ like other containers, with ` Box::new ` .
97101
98102* Libraries
99103
@@ -146,6 +150,7 @@ Version 1.0.0-alpha (January 2015)
146150[ err-conv ] : https://github.com/rust-lang/rfcs/blob/master/text/0236-error-conventions.md
147151[ rt ] : https://github.com/rust-lang/rfcs/blob/master/text/0230-remove-runtime.md
148152[ mac ] : https://github.com/rust-lang/rfcs/blob/master/text/0453-macro-reform.md
153+ [ mac-future ] : https://github.com/rust-lang/rfcs/pull/550
149154[ DST ] : http://smallcultfollowing.com/babysteps/blog/2014/01/05/dst-take-5/
150155[ coll1 ] : https://github.com/rust-lang/rfcs/blob/master/text/0235-collections-conventions.md
151156[ coll2 ] : https://github.com/rust-lang/rfcs/blob/master/text/0509-collections-reform-part-2.md
0 commit comments