Releases: rust-lang/rust
Rust 0.12.0
-
~1900 changes, numerous bugfixes
-
Highlights
- The introductory documentation (now called The Rust Guide) has been completely rewritten, as have a number of supplementary guides.
- Rust's package manager, Cargo, continues to improve and is sometimes considered to be quite awesome.
- Many API's in
stdhave been reviewed and updated for consistency with the in-development Rust coding guidelines. The standard library documentation tracks stabilization progress. - Minor libraries have been moved out-of-tree to the rust-lang org on GitHub: uuid, semver, glob, num, hexfloat, fourcc. They can be installed with Cargo.
- Lifetime elision allows lifetime annotations to be left off of function declarations in many common scenarios.
- Rust now works on 64-bit Windows.
-
Language
- Indexing can be overloaded with the
IndexandIndexMuttraits. - The
if letconstruct takes a branch only if theletpattern matches, currently behind the 'if_let' feature gate. - 'where clauses', a more flexible syntax for specifying trait bounds that is more aesthetic, have been added for traits and free functions. Where clauses will in the future make it possible to constrain associated types, which would be impossible with the existing syntax.
- A new slicing syntax (e.g.
[0..4]) has been introduced behind the 'slicing_syntax' feature gate, and can be overloaded with theSliceorSliceMuttraits. - The syntax for matching of sub-slices has been changed to use a postfix
..instead of prefix (.e.g.[a, b, c..]), for consistency with other uses of..and to future-proof potential additional uses of the syntax. - The syntax for matching inclusive ranges in patterns has changed from
0..3to0...4to be consistent with the exclusive range syntax for slicing. - Matching of sub-slices in non-tail positions (e.g.
[a.., b, c]) has been put behind the 'advanced_slice_patterns' feature gate and may be removed in the future. - Components of tuples and tuple structs can be extracted using the
value.0syntax, currently behind thetuple_indexingfeature gate. - The
#[crate_id]attribute is no longer supported; versioning is handled by the package manager. - Renaming crate imports are now written
extern crate foo as barinstead ofextern crate bar = foo. - Renaming use statements are now written
use foo as barinstead ofuse bar = foo. letandmatchbindings and argument names in macros are now hygienic.- The new, more efficient, closure types ('unboxed closures') have been added under a feature gate, 'unboxed_closures'. These will soon replace the existing closure types, once higher-ranked trait lifetimes are added to the language.
movehas been added as a keyword, for indicating closures that capture by value.- Mutation and assignment is no longer allowed in pattern guards.
- Generic structs and enums can now have trait bounds.
- The
Sharetrait is now calledSyncto free up the term 'shared' to refer to 'shared reference' (the default reference type. - Dynamically-sized types have been mostly implemented, unifying the behavior of fat-pointer types with the rest of the type system.
- As part of dynamically-sized types, the
Sizedtrait has been introduced, which qualifying types implement by default, and which type parameters expect by default. To specify that a type parameter does not need to be sized, write<Sized? T>. Most types areSized, notable exceptions being unsized arrays ([T]) and trait types. - Closures can return
!, as in|| -> !orproc() -> !. - Lifetime bounds can now be applied to type parameters and object types.
- The old, reference counted GC type,
Gc<T>which was once denoted by the@sigil, has finally been removed. GC will be revisited in the future.
- Indexing can be overloaded with the
-
Libraries
- Library documentation has been improved for a number of modules.
- Bit-vectors, collections::bitv has been modernized.
- The url crate is deprecated in favor of http://github.com/servo/rust-url, which can be installed with Cargo.
- Most I/O stream types can be cloned and subsequently closed from a different thread.
- A
std::time::Durationtype has been added for use in I/O methods that rely on timers, as well as in the 'time' crate'sTimespecarithmetic. - The runtime I/O abstraction layer that enabled the green thread scheduler to do non-thread-blocking I/O has been removed, along with the libuv-based implementation employed by the green thread scheduler. This will greatly simplify the future I/O work.
collections::btreehas been rewritten to have a more idiomatic and efficient design.
-
Tooling
- rustdoc output now indicates the stability levels of API's.
- The
--crate-nameflag can specify the name of the crate being compiled, like#[crate_name]. - The
-C metadataspecifies additional metadata to hash into symbol names, and-C extra-filenamespecifies additional information to put into the output filename, for use by the package manager for versioning. - debug info generation has continued to improve and should be more reliable under both gdb and lldb.
- rustc has experimental support for compiling in parallel using the
-C codegen-unitsflag. - rustc no longer encodes rpath information into binaries by default.
-
Misc
- Stack usage has been optimized with LLVM lifetime annotations.
- Official Rust binaries on Linux are more compatible with older kernels and distributions, built on CentOS 5.10.
Rust 0.11.0
-
~1700 changes, numerous bugfixes
-
Language
- ~[T] has been removed from the language. This type is superseded by the Vec type.
- ~str has been removed from the language. This type is superseded by the String type.
- ~T has been removed from the language. This type is superseded by the Box type.
- @t has been removed from the language. This type is superseded by the standard library's std::gc::Gc type.
- Struct fields are now all private by default.
- Vector indices and shift amounts are both required to be a
uintinstead of any integral type. - Byte character, byte string, and raw byte string literals are now all supported by prefixing the normal literal with a
b. - Multiple ABIs are no longer allowed in an ABI string
- The syntax for lifetimes on closures/procedures has been tweaked slightly:
<'a>|A, B|: 'b + K -> T - Floating point modulus has been removed from the language; however it is still provided by a library implementation.
- Private enum variants are now disallowed.
- The
privkeyword has been removed from the language. - A closure can no longer be invoked through a &-pointer.
- The
use foo, bar, baz;syntax has been removed from the language. - The transmute intrinsic no longer works on type parameters.
- Statics now allow blocks/items in their definition.
- Trait bounds are separated from objects with + instead of : now.
- Objects can no longer be read while they are mutably borrowed.
- The address of a static is now marked as insignificant unless the #[inline(never)] attribute is placed it.
- The #[unsafe_destructor] attribute is now behind a feature gate.
- Struct literals are no longer allowed in ambiguous positions such as if, while, match, and for..in.
- Declaration of lang items and intrinsics are now feature-gated by default.
- Integral literals no longer default to
int, and floating point literals no longer default tof64. Literals must be suffixed with an appropriate type if inference cannot determine the type of the literal. - The Box type is no longer implicitly borrowed to &mut T.
- Procedures are now required to not capture borrowed references.
-
Libraries
- The standard library is now a "facade" over a number of underlying libraries. This means that development on the standard library should be speedier due to smaller crates, as well as a clearer line between all dependencies.
- A new library, libcore, lives under the standard library's facade which is Rust's "0-assumption" library, suitable for embedded and kernel development for example.
- A regex crate has been added to the standard distribution. This crate includes statically compiled regular expressions.
- The unwrap/unwrap_err methods on Result require a Show bound for better error messages.
- The return types of the std::comm primitives have been centralized around the Result type.
- A number of I/O primitives have gained the ability to time out their operations.
- A number of I/O primitives have gained the ability to close their reading/writing halves to cancel pending operations.
- Reverse iterator methods have been removed in favor of
rev()on their forward-iteration counterparts. - A bitflags! macro has been added to enable easy interop with C and management of bit flags.
- A debug_assert! macro is now provided which is disabled when
--cfg ndebugis passed to the compiler. - A graphviz crate has been added for creating .dot files.
- The std::cast module has been migrated into std::mem.
- The std::local_data api has been migrated from freestanding functions to being based on methods.
- The Pod trait has been renamed to Copy.
- jemalloc has been added as the default allocator for types.
- The API for allocating memory has been changed to use proper alignment and sized deallocation
- Connecting a TcpStream or binding a TcpListener is now based on a string address and a u16 port. This allows connecting to a hostname as opposed to an IP.
- The Reader trait now contains a core method, read_at_least(), which correctly handles many repeated 0-length reads.
- The process-spawning API is now centered around a builder-style Command struct.
- The :? printing qualifier has been moved from the standard library to an external libdebug crate.
- Eq/Ord have been renamed to PartialEq/PartialOrd. TotalEq/TotalOrd have been renamed to Eq/Ord.
- The select/plural methods have been removed from format!. The escapes for { and } have also changed from { and } to {{ and }}, respectively.
- The TaskBuilder API has been re-worked to be a true builder, and extension traits for spawning native/green tasks have been added.
-
Tooling
- All breaking changes to the language or libraries now have their commit message annotated with
[breaking-change]to allow for easy discovery of breaking changes. - The compiler will now try to suggest how to annotate lifetimes if a lifetime-related error occurs.
- Debug info continues to be improved greatly with general bug fixes and better support for situations like link time optimization (LTO).
- Usage of syntax extensions when cross-compiling has been fixed.
- Functionality equivalent to GCC & Clang's -ffunction-sections, -fdata-sections and --gc-sections has been enabled by default
- The compiler is now stricter about where it will load module files from when a module is declared via
mod foo;. - The #[phase(syntax)] attribute has been renamed to #[phase(plugin)]. Syntax extensions are now discovered via a "plugin registrar" type which will be extended in the future to other various plugins.
- Lints have been restructured to allow for dynamically loadable lints.
- A number of rustdoc improvements:
- The HTML output has been visually redesigned.
- Markdown is now powered by hoedown instead of sundown.
- Searching heuristics have been greatly improved.
- The search index has been reduced in size by a great amount.
- Cross-crate documentation via
pub usehas been greatly improved. - Primitive types are now hyperlinked and documented.
- Documentation has been moved from static.rust-lang.org/doc to doc.rust-lang.org
- A new sandbox, play.rust-lang.org, is available for running and sharing rust code examples on-line.
- Unused attributes are now more robustly warned about.
- The dead_code lint now warns about unused struct fields.
- Cross-compiling to iOS is now supported.
- Cross-compiling to mipsel is now supported.
- Stability attributes are now inherited by default and no longer apply to intra-crate usage, only inter-crate usage.
- Error message related to non-exhaustive match expressions have been greatly improved.
- All breaking changes to the language or libraries now have their commit message annotated with
Rust 0.10
-
~1500 changes, numerous bugfixes
-
Language
- A new RFC process is now in place for modifying the language.
- Patterns with
@-pointers have been removed from the language. - Patterns with unique vectors (
~[T]) have been removed from the language. - Patterns with unique strings (
~str) have been removed from the language. @strhas been removed from the language.@[T]has been removed from the language.@selfhas been removed from the language.@Traithas been removed from the language.- Headers on
~allocations which contain@boxes inside the type for reference counting have been removed. - The semantics around the lifetimes of temporary expressions have changed, see #3511 and #11585 for more information.
- Cross-crate syntax extensions are now possible, but feature gated. See #11151 for more information. This includes both
macro_rules!macros as well as syntax extensions such asformat!. - New lint modes have been added, and older ones have been turned on to be warn-by-default.
- Unnecessary parentheses
- Uppercase statics
- Camel Case types
- Uppercase variables
- Publicly visible private types
#[deriving]with raw pointers
- Unsafe functions can no longer be coerced to closures.
- Various obscure macros such as
log_syntax!are now behind feature gates. - The
#[simd]attribute is now behind a feature gate. - Visibility is no longer allowed on
extern cratestatements, and unnecessary visibility (priv) is no longer allowed onusestatements. - Trailing commas are now allowed in argument lists and tuple patterns.
- The
dokeyword has been removed, it is now a reserved keyword. - Default type parameters have been implemented, but are feature gated.
- Borrowed variables through captures in closures are now considered soundly.
extern modis nowextern crate- The
Freezetrait has been removed. - The
Sharetrait has been added for types that can be shared among threads. - Labels in macros are now hygienic.
- Expression/statement macro invocations can be delimited with
{}now. - Treatment of types allowed in
static mutlocations has been tweaked. - The
*and.operators are now overloadable through theDerefandDerefMuttraits. ~Traitandprocno longer haveSendbounds by default.- Partial type hints are now supported with the
_type marker. - An
Unsafetype was introduced for interior mutability. It is now considered undefined to transmute from&Tto&mut Twithout using theUnsafetype. - The #[linkage] attribute was implemented for extern statics/functions.
- The inner attribute syntax has changed from
#[foo];to#![foo]. Podwas renamed toCopy.
-
Libraries
- The
libextralibrary has been removed. It has now been decomposed into component libraries with smaller and more focused nuggets of functionality. The full list of libraries can be found on the documentation index page. - std:
std::conditionhas been removed. All I/O errors are now propagated through theResulttype. In order to assist with error handling, atry!macro for unwrapping errors with an early return and a lint for unused results has been added. See #12039 for more information. - std: The
vecmodule has been renamed toslice. - std: A new vector type,
Vec<T>, has been added in preparation for DST. This will become the only growable vector in the future. - std:
std::ionow has more public re-exports. Types such asBufferedReaderare now found atstd::io::BufferedReaderinstead ofstd::io::buffered::BufferedReader. - std:
printandprintlnare no longer in the prelude, theprint!andprintln!macros are intended to be used instead. - std:
Rcnow has aWeakpointer for breaking cycles, and it no longer attempts to statically prevent cycles. - std: The standard distribution is adopting the policy of pushing failure to the user rather than failing in libraries. Many functions (such as
slice::last()) now returnOption<T>instead ofT+ failing. - std:
fmt::Defaulthas been renamed tofmt::Show, and it now has a new deriving mode:#[deriving(Show)]. - std:
ToStris now implemented for all types implementingShow. - std: The formatting trait methods now take
&selfinstead of&T - std: The
invert()method on iterators has been renamed torev() - std:
std::numhas seen a reduction in the genericity of its traits, consolidating functionality into a few core traits. - std: Backtraces are now printed on task failure if the environment variable
RUST_BACKTRACEis present. - std: Naming conventions for iterators have been standardized. More details can be found on the wiki's style guide.
- std:
eof()has been removed from theReadertrait. Specific types may still implement the function. - std: Networking types are now cloneable to allow simultaneous reads/writes.
- std:
assert_approx_eq!has been removed - std: The
eandEformatting specifiers for floats have been added to print them in exponential notation. - std: The
Timestrait has been removed - std: Indications of variance and opting out of builtin bounds is done through marker types in
std::kinds::markernow - std:
hashhas been rewritten,IterByteshas been removed, and#[deriving(Hash)]is now possible. - std:
SharedChanhas been removed,Senderis now cloneable. - std:
ChanandPortwere renamed toSenderandReceiver. - std:
Chan::newis nowchannel(). - std: A new synchronous channel type has been implemented.
- std: A
select!macro is now provided for selecting overReceivers. - std:
hashmapandtriehave been moved tolibcollections - std:
runhas been rolled intoio::process - std:
assert_eq!now uses{}instead of{:?} - std: The equality and comparison traits have seen some reorganization.
- std:
randhas moved tolibrand. - std:
to_{lower,upper}casehas been implemented forchar. - std: Logging has been moved to
liblog. - collections:
HashMaphas been rewritten for higher performance and less memory usage. - native: The default runtime is now
libnative. Iflibgreenis desired, it can be booted manually. The runtime guide has more information and examples. - native: All I/O functionality except signals has been implemented.
- green: Task spawning with
libgreenhas been optimized with stack caching and various trimming of code. - green: Tasks spawned by
libgreennow have an unmapped guard page. - sync: The
extra::syncmodule has been updated to modern rust (and moved to thesynclibrary), tweaking and improving various interfaces while dropping redundant functionality. - sync: A new
Barriertype has been added to thesynclibrary. - sync: An efficient mutex for native and green tasks has been implemented.
- serialize: The
base64module has seen some improvement. It treats newlines better, has non-string error values, and has seen general cleanup. - fourcc: A
fourcc!macro was introduced - hexfloat: A
hexfloat!macro was implemented for specifying floats via a hexadecimal literal.
- The
-
Tooling
rustpkghas been deprecated and removed from the main repository. Its replacement,cargo, is under development.- Nightly builds of rust are now available
- The memory usage of rustc has been improved many times throughout this release cycle.
- The build process supports disabling rpath support for the rustc binary itself.
- Code generation has improved in some cases, giving more information to the LLVM optimization passes to enable more extensive optimizations.
- Debuginfo compatibility with lldb on OSX has been restored.
- The master branch is now gated on an android bot, making building for android much more reliable.
- Output flags have been centralized into one
--emitflag. - Crate type flags have been centralized into one
--crate-typeflag. - Codegen flags have been consolidated behind a
-Cflag. - Linking against outdated crates now has improved error messages.
- Error messages with lifetimes will often suggest how to annotate the function to fix the error.
- Many more types are documented in the standard library, and new guides were written.
- Many
rustdocimprovements:- code blocks are syntax highlighted.
- render standalone markdown files.
- the --test flag tests all code blocks by default.
- exported macros are displayed.
- re-exported types have their documentation inlined at the location of the first re-export.
- search works across crates that have been rendered to the same output directory.
Rust 0.9
-
~1800 changes, numerous bugfixes
-
Language
- The
floattype has been removed. Usef32orf64instead. - A new facility for enabling experimental features (feature gating) has been added, using the crate-level
#[feature(foo)]attribute. - Managed boxes (@) are now behind a feature gate (
#[feature(managed_boxes)]) in preparation for future removal. Use the standard library'sGcorRctypes instead. @muthas been removed. Usestd::cell::{Cell, RefCell}instead.- Jumping back to the top of a loop is now done with
continueinstead ofloop. - Strings can no longer be mutated through index assignment.
- Raw strings can be created via the basic
r"foo"syntax or with matched hash delimiters, as inr###"foo"###. ~fnis now writtenproc (args) -> retval { ... }and may only be called once.- The
&fntype is now written|args| -> retto match the literal form. @fns have been removed.doonly works with procs in order to make it obvious what the cost ofdois.- Single-element tuple-like structs can no longer be dereferenced to obtain the inner value. A more comprehensive solution for overloading the dereference operator will be provided in the future.
- The
#[link(...)]attribute has been replaced with#[crate_id = "name#vers"]. - Empty
impls must be terminated with empty braces and may not be terminated with a semicolon. - Keywords are no longer allowed as lifetime names; the
selflifetime no longer has any special meaning. - The old
fmt!string formatting macro has been removed. printf!andprintfln!(old-style formatting) removed in favor ofprint!andprintln!.mutworks in patterns now, as inlet (mut x, y) = (1, 2);.- The
extern mod foo (name = "bar")syntax has been removed. Useextern mod foo = "bar"instead. - New reserved keywords:
alignof,offsetof,sizeof. - Macros can have attributes.
- Macros can expand to items with attributes.
- Macros can expand to multiple items.
- The
asm!macro is feature-gated (#[feature(asm)]). - Comments may be nested.
- Values automatically coerce to trait objects they implement, without an explicit
as. - Enum discriminants are no longer an entire word but as small as needed to contain all the variants. The
reprattribute can be used to override the discriminant size, as in#[repr(int)]for integer-sized, and#[repr(C)]to match C enums. - Non-string literals are not allowed in attributes (they never worked).
- The FFI now supports variadic functions.
- Octal numeric literals, as in
0o7777. - The
concat!syntax extension performs compile-time string concatenation. - The
#[fixed_stack_segment]and#[rust_stack]attributes have been removed as Rust no longer uses segmented stacks. - Non-ascii identifiers are feature-gated (
#[feature(non_ascii_idents)]). - Ignoring all fields of an enum variant or tuple-struct is done with
.., not*; ignoring remaining fields of a struct is also done with.., not_; ignoring a slice of a vector is done with.., not.._. rustcsupports the "win64" calling convention viaextern "win64".rustcsupports the "system" calling convention, which defaults to the preferred convention for the target platform, "stdcall" on 32-bit Windows, "C" elsewhere.- The
type_overflowlint (default: warn) checks literals for overflow. - The
unsafe_blocklint (default: allow) checks for usage ofunsafe. - The
attribute_usagelint (default: warn) warns about unknown attributes. - The
unknown_featureslint (default: warn) warns about unknown feature gates. - The
dead_codelint (default: warn) checks for dead code. - Rust libraries can be linked statically to one another
#[link_args]is behind thelink_argsfeature gate.- Native libraries are now linked with
#[link(name = "foo")] - Native libraries can be statically linked to a rust crate (
#[link(name = "foo", kind = "static")]). - Native OS X frameworks are now officially supported (
#[link(name = "foo", kind = "framework")]). - The
#[thread_local]attribute creates thread-local (not task-local) variables. Currently behind thethread_localfeature gate. - The
returnkeyword may be used in closures. - Types that can be copied via a memcpy implement the
Podkind. - The
cfgattribute can now be used on struct fields and enum variants.
- The
-
Libraries
- std: The
optionandresultAPI's have been overhauled to make them simpler, more consistent, and more composable. - std: The entire
std::iomodule has been replaced with one that is more comprehensive and that properly interfaces with the underlying scheduler. File, TCP, UDP, Unix sockets, pipes, and timers are all implemented. - std:
io::utilcontains a number of useful implementations ofReaderandWriter, includingNullReader,NullWriter,ZeroReader,TeeReader. - std: The reference counted pointer type
extra::rcmoved into std. - std: The
Gctype in thegcmodule will replace@(it is currently just a wrapper around it). - std: The
Eithertype has been removed. - std:
fmt::Defaultcan be implemented for any type to provide default formatting to theformat!macro, as informat!("{}", myfoo). - std: The
randAPI continues to be tweaked. - std: The
rust_begin_unwindfunction, useful for inserting breakpoints on failure in gdb, is now namedrust_fail. - std: The
each_keyandeach_valuemethods onHashMaphave been replaced by thekeysandvaluesiterators. - std: Functions dealing with type size and alignment have moved from the
sysmodule to thememmodule. - std: The
pathmodule was written and API changed. - std:
str::from_utf8has been changed to cast instead of allocate. - std:
starts_withandends_withmethods added to vectors via theImmutableEqVectortrait, which is in the prelude. - std: Vectors can be indexed with the
get_optmethod, which returnsNoneif the index is out of bounds. - std: Task failure no longer propagates between tasks, as the model was complex, expensive, and incompatible with thread-based tasks.
- std: The
Anytype can be used for dynamic typing. - std:
~Anycan be passed to thefail!macro and retrieved viatask::try. - std: Methods that produce iterators generally do not have an
_itersuffix now. - std:
cell::Cellandcell::RefCellcan be used to introduce mutability roots (mutable fields, etc.). Use instead of e.g.@mut. - std:
util::ignorerenamed toprelude::drop. - std: Slices have
sortandsort_bymethods via theMutableVectortrait. - std:
vec::rawhas seen a lot of cleanup and API changes. - std: The standard library no longer includes any C++ code, and very minimal C, eliminating the dependency on libstdc++.
- std: Runtime scheduling and I/O functionality has been factored out into extensible interfaces and is now implemented by two different crates: libnative, for native threading and I/O; and libgreen, for green threading and I/O. This paves the way for using the standard library in more limited embedded environments.
- std: The
commmodule has been rewritten to be much faster, have a simpler, more consistent API, and to work for both native and green threading. - std: All libuv dependencies have been moved into the rustuv crate.
- native: New implementations of runtime scheduling on top of OS threads.
- native: New native implementations of TCP, UDP, file I/O, process spawning, and other I/O.
- green: The green thread scheduler and message passing types are almost entirely lock-free.
- extra: The
flatpipesmodule had bitrotted and was removed. - extra: All crypto functions have been removed and Rust now has a policy of not reimplementing crypto in the standard library. In the future crypto will be provided by external crates with bindings to established libraries.
- extra:
c_vechas been modernized. - extra: The
sortmodule has been removed. Use thesortmethod on mutable slices.
- std: The
-
Tooling
- The
rustandrusticommands have been removed, due to lack of maintenance. rustdocwas completely rewritten.rustdoccan test code examples in documentation.rustpkgcan test packages with the argument, 'test'.rustpkgsupports arbitrary dependencies, including C libraries.rustc's support for generating debug info is improved again.rustchas better error reporting for unbalanced delimiters.rustc's JIT support was removed due to bitrot.- Executables and static libraries can be built with LTO (-Z lto)
rustcadds a--dep-infoflag for communicating dependencies to build tools.
- The
Rust 0.8
-
~2200 changes, numerous bugfixes
-
Language
- The
forloop syntax has changed to work with theIteratortrait. - At long last, unwinding works on Windows.
- Default methods are ready for use.
- Many trait inheritance bugs fixed.
- Owned and borrowed trait objects work more reliably.
copyis no longer a keyword. It has been replaced by theClonetrait.- rustc can omit emission of code for the
debug!macro if it is passed--cfg ndebug - mod.rs is now "blessed". When loading
mod foo;, rustc will now look for foo.rs, then foo/mod.rs, and will generate an error when both are present. - Strings no longer contain trailing nulls. The new
std::c_strmodule provides new mechanisms for converting to C strings. - The type of foreign functions is now
extern "C" fninstead of `*u8'. - The FFI has been overhauled such that foreign functions are called directly, instead of through a stack-switching wrapper.
- Calling a foreign function must be done through a Rust function with the
#[fixed_stack_segment]attribute. - The
externfn!macro can be used to declare both a foreign function and a#[fixed_stack_segment]wrapper at once. pubandprivmodifiers onexternblocks are no longer parsed.unsafeis no longer allowed on extern fns - they are all unsafe.privis disallowed everywhere except for struct fields and enum variants.&T(besides&'static T) is no longer allowed in@T.refbindings in irrefutable patterns work correctly now.charis now prevented from containing invalid code points.- Casting to
boolis no longer allowed. \0is now accepted as an escape in chars and strings.yieldis a reserved keyword.typeofis a reserved keyword.- Crates may be imported by URL with
extern mod foo = "url";. - Explicit enum discriminants may be given as uints as in
enum E { V = 0u } - Static vectors can be initialized with repeating elements, e.g.
static foo: [u8, .. 100]: [0, .. 100];. - Static structs can be initialized with functional record update, e.g.
static foo: Foo = Foo { a: 5, .. bar };. cfg!can be used to conditionally execute code based on the crate configuration, similarly to#[cfg(...)].- The
unnecessary_qualificationlint detects unneeded module prefixes (default: allow). - Arithmetic operations have been implemented on the SIMD types in
std::unstable::simd. - Exchange allocation headers were removed, reducing memory usage.
format!implements a completely new, extensible, and higher-performance string formatting system. It will replacefmt!.print!andprintln!write formatted strings (using theformat!extension) to stdout.write!andwriteln!write formatted strings (using theformat!extension) to the new Writers instd::rt::io.- The library section in which a function or static is placed may be specified with
#[link_section = "..."]. - The
proto!syntax extension for defining bounded message protocols was removed. macro_rules!is hygienic forletdeclarations.- The
#[export_name]attribute specifies the name of a symbol. unreachable!can be used to indicate unreachable code, and fails if executed.
- The
-
Libraries
- std: Transitioned to the new runtime, written in Rust.
- std: Added an experimental I/O library,
rt::io, based on the new runtime. - std: A new generic
rangefunction was added to the prelude, replacinguint::rangeand friends. - std:
range_revno longer exists. Since range is an iterator it can be reversed withrange(lo, hi).invert(). - std: The
chainmethod on option renamed toand_then;unwrap_or_defaultrenamed tounwrap_or. - std: The
iteratormodule was renamed toiter. - std: Integral types now support the
checked_add,checked_sub, andchecked_muloperations for detecting overflow. - std: Many methods in
str,vec,option,result` were renamed for consistency. - std: Methods are standardizing on conventions for casting methods:
to_foofor copying,into_foofor moving,as_foofor temporary and cheap casts. - std: The
CStringtype inc_strprovides new ways to convert to and from C strings. - std:
DoubleEndedIteratorcan yield elements in two directions. - std: The
mut_splitmethod on vectors partitions an&mut [T]into two splices. - std:
str::from_bytesrenamed tostr::from_utf8. - std:
pop_optandshift_optmethods added to vectors. - std: The task-local data interface no longer uses @, and keys are no longer function pointers.
- std: The
swap_unwrapmethod ofOptionrenamed totake_unwrap. - std: Added
SharedPorttocomm. - std:
Eqhas a default method forne; onlyeqis required in implementations. - std:
Ordhas default methods forle,gtandge; onlyltis required in implementations. - std:
is_utf8performance is improved, impacting many string functions. - std:
os::MemoryMapprovides cross-platform mmap. - std:
ptr::offsetis now unsafe, but also more optimized. Offsets that are not 'in-bounds' are considered undefined. - std: Many freestanding functions in
vecremoved in favor of methods. - std: Many freestanding functions on scalar types removed in favor of methods.
- std: Many options to task builders were removed since they don't make sense in the new scheduler design.
- std: More containers implement
FromIteratorso can be created by thecollectmethod. - std: More complete atomic types in
unstable::atomics. - std:
comm::PortSetremoved. - std: Mutating methods in the
SetandMaptraits have been moved into theMutableSetandMutableMaptraits.Container::is_empty,Map::contains_key,MutableMap::insert, andMutableMap::removehave default implementations. - std: Various
from_strfunctions were removed in favor of a genericfrom_strwhich is available in the prelude. - std:
util::unreachableremoved in favor of theunreachable!macro. - extra:
dlist, the doubly-linked list was modernized. - extra: Added a
hexmodule withToHexandFromHextraits. - extra: Added
globmodule, replacingstd::os::glob. - extra:
ropewas removed. - extra:
dequewas renamed toringbuf.RingBufimplementsDeque. - extra:
net, andtimerwere removed. The experimental replacements arestd::rt::io::netandstd::rt::io::timer. - extra: Iterators implemented for
SmallIntMap. - extra: Iterators implemented for
BitvandBitvSet. - extra:
SmallIntSetremoved. UseBitvSet. - extra: Performance of JSON parsing greatly improved.
- extra:
semverupdated to SemVer 2.0.0. - extra:
termhandles more terminals correctly. - extra:
dbgmodule removed. - extra:
parmodule removed. - extra:
futurewas cleaned up, with some method renames. - extra: Most free functions in
getoptswere converted to methods.
-
Other
- rustc's debug info generation (
-Z debug-info) is greatly improved. - rustc accepts
--target-cputo compile to a specific CPU architecture, similarly to gcc's--marchflag. - rustc's performance compiling small crates is much better.
- rustpkg has received many improvements.
- rustpkg supports git tags as package IDs.
- rustpkg builds into target-specific directories so it can be used for cross-compiling.
- The number of concurrent test tasks is controlled by the environment variable RUST_TEST_TASKS.
- The test harness can now report metrics for benchmarks.
- All tools have man pages.
- Programs compiled with
--testnow support the-hand--helpflags. - The runtime uses jemalloc for allocations.
- Segmented stacks are temporarily disabled as part of the transition to the new runtime. Stack overflows are possible!
- A new documentation backend, rustdoc_ng, is available for use. It is still invoked through the normal
rustdoccommand.
- rustc's debug info generation (
Rust 0.7
-
~2000 changes, numerous bugfixes
-
Language
impls no longer accept a visibility qualifier. Put them on methods instead.- The borrow checker has been rewritten with flow-sensitivity, fixing many bugs and inconveniences.
- The
selfparameter no longer implicitly means&'self self, and can be explicitly marked with a lifetime. - Overloadable compound operators (
+=, etc.) have been temporarily removed due to bugs. - The
forloop protocol now requiresfor-iterators to returnboolso they compose better. - The
Durabletrait is replaced with the'staticbounds. - Trait default methods work more often.
- Structs with the
#[packed]attribute have byte alignment and no padding between fields. - Type parameters bound by
Copymust now be copied explicitly with thecopykeyword. - It is now illegal to move out of a dereferenced unsafe pointer.
Option<~T>is now represented as a nullable pointer.@mutdoes dynamic borrow checks correctly.- The
mainfunction is only detected at the topmost level of the crate. The#[main]attribute is still valid anywhere. - Struct fields may no longer be mutable. Use inherited mutability.
- The
#[no_send]attribute makes a type that would otherwise beSend, not. - The
#[no_freeze]attribute makes a type that would otherwise beFreeze, not. - Unbounded recursion will abort the process after reaching the limit specified by the
RUST_MAX_STACKenvironment variable (default: 1GB). - The
vecs_implicitly_copyablelint mode has been removed. Vectors are never implicitly copyable. #[static_assert]makes compile-time assertions about static bools.- At long last, 'argument modes' no longer exist.
- The rarely used
use modstatement no longer exists.
-
Syntax extensions
fail!andassert!accept~str,&'static strorfmt!-style argument list.Encodable,Decodable,Ord,TotalOrd,TotalEq,DeepClone,Rand,ZeroandToStrcan all be automatically derived with#[deriving(...)].- The
bytes!macro returns a vector of bytes for string, u8, char, and unsuffixed integer literals.
-
Libraries
- The
corecrate was renamed tostd. - The
stdcrate was renamed toextra. - More and improved documentation.
- std:
iteratormodule for external iterator objects. - Many old-style (internal, higher-order function) iterators replaced by implementations of
Iterator. - std: Many old internal vector and string iterators, incl.
any,all. removed. - std: The
finalizemethod ofDroprenamed todrop. - std: The
dropmethod now takes&mut selfinstead of&self. - std: The prelude no longer re-exports any modules, only types and traits.
- std: Prelude additions:
print,println,FromStr,ApproxEq,Equiv,Iterator,IteratorUtil, many numeric traits, many tuple traits. - std: New numeric traits:
Fractional,Real,RealExt,Integer,Ratio,Algebraic,Trigonometric,Exponential,Primitive. - std: Tuple traits and accessors defined for up to 12-tuples, e.g.
(0, 1, 2).n2()or(0, 1, 2).n2_ref(). - std: Many types implement
Clone. - std:
pathtype renamed toPath. - std:
mutmodule andMuttype removed. - std: Many standalone functions removed in favor of methods and iterators in
vec,str. In the future methods will also work as functions. - std:
reinterpret_castremoved. Usetransmute. - std: ascii string handling in
std::ascii. - std:
Randis implemented for ~/@. - std:
runmodule for spawning processes overhauled. - std: Various atomic types added to
unstable::atomic. - std: Various types implement
Zero. - std:
LinearMapandLinearSetrenamed toHashMapandHashSet. - std: Borrowed pointer functions moved from
ptrtoborrow. - std: Added
os::mkdir_recursive. - std: Added
os::globfunction performs filesystems globs. - std:
FuzzyEqrenamed toApproxEq. - std:
Mapnow definespopandswapmethods. - std:
Cellconstructors converted to static methods. - extra:
rcmodule adds the reference counted pointers,RcandRcMut. - extra:
flatemodule moved fromstdtoextra. - extra:
fileinputmodule for iterating over a series of files. - extra:
Complexnumber type andcomplexmodule. - extra:
Rationalnumber type andrationalmodule. - extra:
BigInt,BigUintimplement numeric and comparison traits. - extra:
termuses terminfo now, is more correct. - extra:
arcfunctions converted to methods. - extra: Implementation of fixed output size variations of SHA-2.
- The
-
Tooling
unused_variableslint mode for unused variables (default: warn).unused_unsafelint mode for detecting unnecessaryunsafeblocks (default: warn).unused_mutlint mode for identifying unusedmutqualifiers (default: warn).dead_assignmentlint mode for unread variables (default: warn).unnecessary_allocationlint mode detects some heap allocations that are immediately borrowed so could be written without allocating (default: warn).missing_doclint mode (default: allow).unreachable_codelint mode (default: warn).- The
rusticommand has been rewritten and a number of bugs addressed. - rustc outputs in color on more terminals.
- rustc accepts a
--link-argsflag to pass arguments to the linker. - rustc accepts a
-Z print-link-argsflag for debugging linkage. - Compiling with
-gwill make the binary record information about dynamic borrowcheck failures for debugging. - rustdoc has a nicer stylesheet.
- Various improvements to rustdoc.
- Improvements to rustpkg (see the detailed release notes).
Rust 0.6
-
~2100 changes, numerous bugfixes
-
Syntax changes
- The self type parameter in traits is now spelled
Self - The
selfparameter in trait and impl methods must now be explicitly named (for example:fn f(&self) { }). Implicit self is deprecated. - Static methods no longer require the
statickeyword and instead are distinguished by the lack of aselfparameter - Replaced the
Durabletrait with the'staticlifetime - The old closure type syntax with the trailing sigil has been removed in favor of the more consistent leading sigil
superis a keyword, and may be prefixed to paths- Trait bounds are separated with
+instead of whitespace - Traits are implemented with
impl Trait for Typeinstead ofimpl Type: Trait - Lifetime syntax is now
&'l fooinstead of&l/foo - The
exportkeyword has finally been removed - The
movekeyword has been removed (see "Semantic changes") - The interior mutability qualifier on vectors,
[mut T], has been removed. Use&mut [T], etc. mutis no longer valid in~mut T. Use inherited mutabilityfailis no longer a keyword. Usefail!()assertis no longer a keyword. Useassert!()logis no longer a keyword. usedebug!, etc.- 1-tuples may be represented as
(T,) - Struct fields may no longer be
mut. Use inherited mutability,@mut T,core::mutorcore::cell extern mod { ... }is no longer valid syntax for foreign function modules. Use extern blocks:extern { ... }- Newtype enums removed. Use tuple-structs.
- Trait implementations no longer support visibility modifiers
- Pattern matching over vectors improved and expanded
constrenamed tostaticto correspond to lifetime name, and make room for futurestatic mutunsafe mutable globals.- Replaced
#[deriving_eq]with#[deriving(Eq)], etc. Cloneimplementations can be automatically generated with#[deriving(Clone)]- Casts to traits must use a pointer sigil, e.g.
@foo as @Barinstead offoo as Bar. - Fixed length vector types are now written as
[int, .. 3]instead of[int * 3]. - Fixed length vector types can express the length as a constant expression. (ex:
[int, .. GL_BUFFER_SIZE - 2])
- The self type parameter in traits is now spelled
-
Semantic changes
- Types with owned pointers or custom destructors move by default, eliminating the
movekeyword - All foreign functions are considered unsafe
- &mut is now unaliasable
- Writes to borrowed @mut pointers are prevented dynamically
- () has size 0
- The name of the main function can be customized using #[main]
- The default type of an inferred closure is &fn instead of @fn
usestatements may no longer be "chained" - they cannot import identifiers imported by previoususestatementsusestatements are crate relative, importing from the "top" of the crate by default. Paths may be prefixed withsuper::orself::to change the search behavior.- Method visibility is inherited from the implementation declaration
- Structural records have been removed
- Many more types can be used in static items, including enums 'static-lifetime pointers and vectors
- Pattern matching over vectors improved and expanded
- Typechecking of closure types has been overhauled to improve inference and eliminate unsoundness
- Macros leave scope at the end of modules, unless that module is tagged with #[macro_escape]
- Types with owned pointers or custom destructors move by default, eliminating the
-
Libraries
- Added big integers to
std::bigint - Removed
core::oldcommmodule - Added pipe-based
core::commmodule - Numeric traits have been reorganized under
core::num vec::slicefinally returns a slicedebug!and friends don't require a format string, e.g.debug!(Foo)- Containers reorganized around traits in
core::container core::dvecremoved,~[T]is a drop-in replacementcore::send_maprenamed tocore::hashmapstd::mapremoved; replaced withcore::hashmapstd::treemapreimplemented as an owned balanced treestd::dequeandstd::smallintmapreimplemented as owned containerscore::trieadded as a fast ordered map for integer keys- Set types added to
core::hashmap,core::trieandstd::treemap Ordsplit intoOrdandTotalOrd.Ordis still used to overload the comparison operators, whereasTotalOrdis used by certain container types
- Added big integers to
-
Other
- Replaced the 'cargo' package manager with 'rustpkg'
- Added all-purpose 'rust' tool
rustc --testnow supports benchmarks with the#[bench]attribute- rustc now attempts to offer spelling suggestions
- Improved support for ARM and Android
- Preliminary MIPS backend
- Improved foreign function ABI implementation for x86, x86_64
- Various memory usage improvements
- Rust code may be embedded in foreign code under limited circumstances
- Inline assembler supported by new asm!() syntax extension.
Rust 0.5
-
~900 changes, numerous bugfixes
-
Syntax changes
- Removed
<-move operator - Completed the transition from the
#fmtextension syntax tofmt! - Removed old fixed length vector syntax -
[T]/N - New token-based quasi-quoters,
quote_tokens!,quote_expr!, etc. - Macros may now expand to items and statements
a.b()is always parsed as a method call, never as a field projectionEqandIterBytesimplementations can be automatically generated with#[deriving_eq]and#[deriving_iter_bytes]respectively- Removed the special crate language for
.rcfiles - Function arguments may consist of any irrefutable pattern
- Removed
-
Semantic changes
&and~pointers may point to objects- Tuple structs -
struct Foo(Bar, Baz). Will replace newtype enums. - Enum variants may be structs
- Destructors can be added to all nominal types with the Drop trait
- Structs and nullary enum variants may be constants
- Values that cannot be implicitly copied are now automatically moved without writing
moveexplicitly &Tmay now be coerced to*T- Coercions happen in
letstatements as well as function calls usestatements now take crate-relative paths- The module and type namespaces have been merged so that static method names can be resolved under the trait in which they are declared
-
Improved support for language features
- Trait inheritance works in many scenarios
- More support for explicit self arguments in methods -
self,&self@self, and~selfall generally work as expected - Static methods work in more situations
- Experimental: Traits may declare default methods for the implementations to use
-
Libraries
- New condition handling system in
core::condition - Timsort added to
std::sort - New priority queue,
std::priority_queue - Pipes for serializable types, `std::flatpipes'
- Serialization overhauled to be trait-based
- Expanded
getoptsdefinitions - Moved futures to
std - More functions are pure now
core::commrenamed tooldcomm. Still deprecatedrustdocandcargoare libraries now
- New condition handling system in
-
Misc
- Added a preliminary REPL,
rusti - License changed from MIT to dual MIT/APL2
- Added a preliminary REPL,
Rust 0.4
-
~2000 changes, numerous bugfixes
-
Syntax
- All keywords are now strict and may not be used as identifiers anywhere
- Keyword removal: 'again', 'import', 'check', 'new', 'owned', 'send', 'of', 'with', 'to', 'class'.
- Classes are replaced with simpler structs
- Explicit method self types
retbecamereturnandaltbecamematchimportis nowuse;use is nowextern mod`extern mod { ... }is nowextern { ... }use modis the recommended way to import modulespubandprivreplace deprecated export lists- The syntax of
matchpattern arms now uses fat arrow (=>) mainno longer accepts an args vector; useos::argsinstead
-
Semantics
- Trait implementations are now coherent, ala Haskell typeclasses
- Trait methods may be static
- Argument modes are deprecated
- Borrowed pointers are much more mature and recommended for use
- Strings and vectors in the static region are stored in constant memory
- Typestate was removed
- Resolution rewritten to be more reliable
- Support for 'dual-mode' data structures (freezing and thawing)
-
Libraries
- Most binary operators can now be overloaded via the traits in `core::ops'
std::net::urlfor representing URLs- Sendable hash maps in
core::send_map - `core::task' gained a (currently unsafe) task-local storage API
-
Concurrency
- An efficient new intertask communication primitive called the pipe, along with a number of higher-level channel types, in
core::pipes std::arc, an atomically reference counted, immutable, shared memory typestd::sync, various exotic synchronization tools based on arcs and pipes- Futures are now based on pipes and sendable
- More robust linked task failure
- Improved task builder API
- An efficient new intertask communication primitive called the pipe, along with a number of higher-level channel types, in
-
Other
- Improved error reporting
- Preliminary JIT support
- Preliminary work on precise GC
- Extensive architectural improvements to rustc
- Begun a transition away from buggy C++-based reflection (shape) code to Rust-based (visitor) code
- All hash functions and tables converted to secure, randomized SipHash
Rust 0.3
-
~1900 changes, numerous bugfixes
-
New coding conveniences
- Integer-literal suffix inference
- Per-item control over warnings, errors
- #[cfg(windows)] and #[cfg(unix)] attributes
- Documentation comments
- More compact closure syntax
- 'do' expressions for treating higher-order functions as control structures
- *-patterns (wildcard extended to all constructor fields)
-
Semantic cleanup
- Name resolution pass and exhaustiveness checker rewritten
- Region pointers and borrow checking supersede alias analysis
- Init-ness checking is now provided by a region-based liveness pass instead of the typestate pass; same for last-use analysis
- Extensive work on region pointers
-
Experimental new language features
- Slices and fixed-size, interior-allocated vectors
- #!-comments for lang versioning, shell execution
- Destructors and iface implementation for classes; type-parameterized classes and class methods
- 'const' type kind for types that can be used to implement shared-memory concurrency patterns
-
Type reflection
-
Removal of various obsolete features
-
Keywords: 'be', 'prove', 'syntax', 'note', 'mutable', 'bind', 'crust', 'native' (now 'extern'), 'cont' (now 'again')
-
Constructs: do-while loops ('do' repurposed), fn binding, resources (replaced by destructors)
-
-
Compiler reorganization
- Syntax-layer of compiler split into separate crate
- Clang (from LLVM project) integrated into build
- Typechecker split into sub-modules
-
New library code
- New time functions
- Extension methods for many built-in types
- Arc: atomic-refcount read-only / exclusive-use shared cells
- Par: parallel map and search routines
- Extensive work on libuv interface
- Much vector code moved to libraries
- Syntax extensions: #line, #col, #file, #mod, #stringify, #include, #include_str, #include_bin
-
Tool improvements
- Cargo automatically resolves dependencies