Difference between revisions of "Rust"
(Change message for last commit: Added a libraries section. Sorry for forgetting summary.) |
|||
Line 15: | Line 15: | ||
==Rust Libraries== | ==Rust Libraries== | ||
*[https://github.com/tomassedovic/tcod-rs] Libtcod Rust: libtcod 1.5.1 bindings, last git commit: 2017-11-12 | *[https://github.com/tomassedovic/tcod-rs] Libtcod Rust: libtcod 1.5.1 bindings, last git commit: 2017-11-12 | ||
Revision as of 18:47, 4 December 2017
Rust | |
---|---|
Programming Language | |
Company | Mozilla |
Influences | C/C++, Erlang, Haskell, Standard ML |
Updated | 2017-11-22 (1.22.1) |
Status | Stable |
Licensing | Open Source (MIT License) |
Platforms | Linux, OS X, Windows, FreeBSD |
Official site of Rust |
Rust is a systems programming language from Mozilla Research. It is aiming to be a viable replacement for C++ and is used by Mozilla to write a next-generation web browser engine. Unlike most high-level programming languages that use garbage collection, Rust uses the scope-delimited memory management idiom of C++ with stronger enforcement at language level. It uses an abstraction idiom similar to Haskell's type classes instead of OO, and supports reasonably extensive generic programming with type parameters that can be constrained to implemented traits. It has a macro system.
The language and type system have been designed to make it impossible to create memory leaks or null pointer references outside regions explicitly marked as unsafe, while maintaining C++-style explicit memory handling. The cost for this is a somewhat complex core language with various smart pointer types and explicit value lifetime annotations.
Writing FFI bindings to C code is easy. The Cargo tool handles builds and dependencies to third-party packages. There is built-in unit test support.
Rust Libraries
- [1] Libtcod Rust: libtcod 1.5.1 bindings, last git commit: 2017-11-12