Rust Reaches 0.9
Written by Kay Ewbank   
Tuesday, 14 January 2014

Mozilla developers have announced version 0.9 of the Rust systems programming language compiler and tools.

Rust is a systems programming language with a focus on safety, performance and concurrency, and is interesting because of the Mozilla connection and the potential this has to see Rust being used to replace C++ as the compiled language in which apps such as Firefox are written.

rust

According to the announcement of version 0.9, this was another eventful release in which the Rust community made extensive improvements to the runtime and I/O subsystem, introduced static linking and link-time optimization, and reduced the variety of closures in the language.

Version 0.9 also begins a final series of planned changes to how pointers are treated in Rust, starting with the deprecation of the built-in "managed pointer" type and its accompanying `@` sigil (magic symbol), and the introduction of smart pointer types to the standard library.

The next version of Rust is likely to introduce Dynamically Sized Types (DST), as well as the removal of the managed @ pointers.

Corey Richardson, posting in the Rust ‘n Stuffs blog says that:

“box, aka ‘placement new’, along with smart pointer sugar (overloadable dereferencing/borrowing), should also be in by then. We may also see an actual garbage collector.”

Placement new is an extension of the usual new operator that allows you to specify a pointer to the memory you want to use to create an object so partly separating object construction from memory allocation.

In answer to the question, “Is Rust Ready Yet?" Richardson says:

Nope. It still has some work to do. 1.0 is estimated before the end of 2014, though that may slip.

On the ‘still needed’ list is a robust package manager, though Richardson points out the team now has rust-ci, which makes it easy to keep code up to date, and know if a library is up to date.

There are currently two known uses of Rust in production: Tilde is using it in Skylight, and OpenDNS is using it for real-time data processing.

If you want to know more about Rust, Mozilla Developer,  Nicholas Matsakis gave this talk at the Linux conference held in Perth, Western Austrailia 6-10, January 2014.

 

 

 

More Information

Rust-lang.org

Rust 0.9 released

The State of Rust 0.9

Rust on GitHub

Related Articles

Rust 0.7 Released

Rust 0.4 Full Integration of Borrowed Pointers

Mozilla Builds Servo, a New Browser Engine

 

To be informed about new articles on I Programmer, install the I Programmer Toolbar, subscribe to the RSS feed, follow us on, Twitter, Facebook, Google+ or Linkedin,  or sign up for our weekly newsletter.

 

raspberry pi books

 

Comments




or email your comment to: comments@i-programmer.info

 

Banner


Rust Twice As Productive As C++
03/04/2024

Google director of engineering, Lars Bergstrom, gave a talk at the recent Rust Nation UK conference and claimed that Rust was twice as productive as C++. Given how good Google is at C++, this is quite [ ... ]



Is PHP in Trouble?
10/04/2024

The April 2024 headline for the TIOBE Index, which ranks programming languages in terms of their popularity, reads, "Is PHP losing its mojo" asking this question because this month PHP has dropped out [ ... ]


More News

Last Updated ( Tuesday, 13 January 2015 )