2014-07-17 06:47:44 -04:00
# Awesome Rust
2014-07-17 09:05:35 -04:00
A curated list of awesome Rust code and resources. Inspired by the other [awesome lists ](https://github.com/bayandin/awesome-awesomeness ).
2014-07-17 07:02:40 -04:00
2014-10-13 12:20:56 -04:00
Only projects that are stable and useful to users are added. Projects that do not compile with Rust-nightly for a longer time are moved to [UNSTABLE.md ](UNSTABLE.md ).
2014-07-18 03:02:27 -04:00
2014-07-17 07:02:40 -04:00
- [Awesome Rust ](#awesome-rust )
2014-12-18 13:46:25 -05:00
- [Applications ](#applications )
2014-12-18 13:54:22 -05:00
- [Games ](#games )
2014-12-18 13:46:25 -05:00
- [Frameworks ](#frameworks )
2014-07-18 02:24:50 -04:00
- [Audio ](#audio )
2014-07-20 10:24:03 -04:00
- [Build system ](#build-system )
2014-07-26 06:38:16 -04:00
- [Command-line argument parsing ](#command-line-argument-parsing )
2014-07-17 10:34:35 -04:00
- [Compression ](#compression )
2014-07-18 02:35:28 -04:00
- [Computation ](#computation )
2014-07-17 10:34:35 -04:00
- [Cryptography ](#cryptography )
2014-07-20 10:06:24 -04:00
- [Database ](#database )
2014-12-16 15:49:42 -05:00
- [Date and time ](#date-and-time )
2014-07-20 08:56:41 -04:00
- [Encoding ](#encoding )
2014-07-21 02:21:16 -04:00
- [Game development ](#game-development )
2014-07-21 01:56:17 -04:00
- [Games ](#games )
2014-07-20 09:02:45 -04:00
- [GUI ](#gui )
2014-10-12 06:37:13 -04:00
- [Image processing ](#image-processing )
2014-12-13 04:40:25 -05:00
- [Mobile ](#mobile )
2014-07-20 10:30:14 -04:00
- [Network programming ](#network-programming )
2014-12-16 15:49:42 -05:00
- [Platform specific ](#platform-specific )
2014-07-20 10:31:40 -04:00
- [Template engine ](#template-engine )
2014-07-23 09:47:33 -04:00
- [Testing ](#testing )
2014-07-20 10:30:14 -04:00
- [Web programming ](#web-programming )
2014-07-17 09:05:35 -04:00
- [Resources ](#resources )
2014-07-17 07:02:40 -04:00
2014-12-18 13:46:25 -05:00
## Applications
2014-12-18 13:54:22 -05:00
* [gchp/iota ](https://github.com/gchp/iota ) — a simple text editor written in Rust [<img src="https://travis-ci.org/gchp/iota.svg?branch=master"> ](https://travis-ci.org/gchp/iota )
2014-12-18 14:02:58 -05:00
* [uutils/coreutils ](https://github.com/uutils/coreutils ) — cross-platform Rust rewrite of the GNU coreutils [<img src="https://travis-ci.org/uutils/coreutils.svg?branch=master"> ](https://travis-ci.org/uutils/coreutils )
2014-12-18 13:54:22 -05:00
* [Servo ](https://github.com/servo/servo ) — a prototype web browser engine written in Rust
2014-12-18 13:50:33 -05:00
### Games
2015-01-22 13:20:52 -05:00
* [Coeuvre/rust-2048 ](https://github.com/Coeuvre/rust-2048 )
2014-12-18 13:50:33 -05:00
* [lifthrasiir/angolmois-rust ](https://github.com/lifthrasiir/angolmois-rust ) — a minimalistic music video game which supports the BMS format [<img src="https://travis-ci.org/lifthrasiir/angolmois-rust.svg?branch=master"> ](https://travis-ci.org/lifthrasiir/angolmois-rust )
2014-12-18 13:52:08 -05:00
2014-12-18 13:46:25 -05:00
## Frameworks
2014-07-17 09:05:35 -04:00
2014-10-11 09:02:35 -04:00
2014-07-18 02:24:50 -04:00
### Audio
2015-01-22 13:17:52 -05:00
* [bjz/openal-rs ](https://github.com/bjz/openal-rs ) — [OpenAL 1.1 ](http://www.openal.org/ ) bindings [<img src="https://travis-ci.org/bjz/openal-rs.svg?branch=master"> ](https://travis-ci.org/bjz/openal-rs )
2015-01-22 13:20:52 -05:00
* [JeremyLetang/ears ](https://github.com/JeremyLetang/ears ) — a simple library to play Sounds and Musics, on top of OpenAL and libsndfile
* [JeremyLetang/rust-portaudio ](https://github.com/JeremyLetang/rust-portaudio ) — [PortAudio ](http://www.portaudio.com/ ) bindings
2015-01-09 15:27:49 -05:00
* [samdoshi/portmidi-rs ](https://github.com/samdoshi/portmidi-rs ) — [PortMidi ](http://portmedia.sourceforge.net/portmidi/ ) bindings [<img src="https://travis-ci.org/samdoshi/portmidi-rs.svg?branch=master"> ](https://travis-ci.org/samdoshi/portmidi-rs )
2014-07-18 02:24:50 -04:00
2014-07-20 10:24:03 -04:00
### Build system
2015-01-22 13:17:52 -05:00
* [Cargo ](http://crates.io/ ) — the Rust package manager
2014-07-20 10:24:03 -04:00
* CMake
2014-10-12 07:35:55 -04:00
* [SiegeLord/RustCMake ](https://github.com/SiegeLord/RustCMake ) — an example project showing usage of CMake with Rust [<img src="https://travis-ci.org/SiegeLord/RustCMake.svg?branch=master"> ](https://travis-ci.org/SiegeLord/RustCMake )
2014-07-20 10:24:03 -04:00
2014-07-26 06:38:16 -04:00
### Command-line argument parsing
2014-10-12 13:35:27 -04:00
* [docopt/docopt.rs ](https://github.com/docopt/docopt.rs ) — a Rust implementation of [DocOpt ](http://docopt.org ) [<img src="https://travis-ci.org/docopt/docopt.rs.svg?branch=master"> ](https://travis-ci.org/docopt/docopt.rs )
2014-07-26 06:38:16 -04:00
2014-07-17 10:31:09 -04:00
### Compression
2014-11-02 13:45:17 -05:00
* [alexcrichton/bzip2-rs ](https://github.com/alexcrichton/bzip2-rs ) — [libbz2 ](http://www.bzip.org ) bindings [<img src="https://travis-ci.org/alexcrichton/bzip2-rs.svg?branch=master"> ](https://travis-ci.org/alexcrichton/bzip2-rs )
2014-11-18 12:50:14 -05:00
* [alexcrichton/flate2-rs ](https://github.com/alexcrichton/flate2-rs ) — [miniz ](https://code.google.com/p/miniz/ ) bindings [<img src="https://travis-ci.org/alexcrichton/flate2-rs.svg?branch=master"> ](https://travis-ci.org/alexcrichton/flate2-rs )
2014-11-02 13:47:00 -05:00
* [alexcrichton/tar-rs ](https://github.com/alexcrichton/tar-rs ) — tar archive reading/writing in Rust [<img src="https://travis-ci.org/alexcrichton/tar-rs.svg?branch=master"> ](https://travis-ci.org/alexcrichton/tar-rs )
2014-10-12 07:35:55 -04:00
* [lifthrasiir/rust-zip ](https://github.com/lifthrasiir/rust-zip ) — read and write ZIP archives [<img src="https://travis-ci.org/lifthrasiir/rust-zip.svg?branch=master"> ](https://travis-ci.org/lifthrasiir/rust-zip )
2014-07-17 10:31:09 -04:00
2014-07-18 02:35:53 -04:00
### Computation
2014-10-11 09:02:35 -04:00
2014-12-18 14:11:46 -05:00
* [luqmana/rust-opencl ](https://github.com/luqmana/rust-opencl ) — [OpenCL ](https://www.khronos.org/opencl/ ) bindings [<img src="https://travis-ci.org/luqmana/rust-opencl.svg?branch=master"> ](https://travis-ci.org/luqmana/rust-opencl )
2015-01-22 13:17:52 -05:00
* [thestinger/rust-gmp ](https://github.com/thestinger/rust-gmp ) — [libgmp ](https://gmplib.org/ ) bindings [<img src="https://travis-ci.org/thestinger/rust-gmp.svg?branch=master"> ](https://travis-ci.org/thestinger/rust-gmp )
2014-07-18 02:35:28 -04:00
2014-07-17 10:34:35 -04:00
### Cryptography
2014-10-12 07:35:55 -04:00
* [DaGenix/rust-crypto ](https://github.com/DaGenix/rust-crypto ) — cryptographic algorithms in Rust [<img src="https://travis-ci.org/DaGenix/rust-crypto.svg?branch=master"> ](https://travis-ci.org/DaGenix/rust-crypto )
2015-01-22 13:17:52 -05:00
* [dnaq/sodiumoxide ](https://github.com/dnaq/sodiumoxide ) — [libsodium ](https://github.com/jedisct1/libsodium ) bindings [<img src="https://travis-ci.org/dnaq/sodiumoxide.svg?branch=master"> ](https://travis-ci.org/dnaq/sodiumoxide )
2015-01-22 13:20:52 -05:00
* [klutzy/suruga ](https://github.com/klutzy/suruga ) — a Rust implementation of [TLS 1.2 ](http://tools.ietf.org/html/rfc5246 )
2015-01-22 13:17:52 -05:00
* [seb-m/common.rs ](https://github.com/seb-m/common.rs ) — Common Rust crypto utilities [<img src="https://travis-ci.org/seb-m/common.rs.svg?branch=master"> ](https://travis-ci.org/seb-m/common.rs )
2014-11-02 13:36:41 -05:00
* [sfackler/rust-openssl ](https://github.com/sfackler/rust-openssl ) — [OpenSSL ](https://www.openssl.org/ ) bindings [<img src="https://travis-ci.org/sfackler/rust-openssl.svg?branch=master"> ](https://travis-ci.org/sfackler/rust-openssl )
2014-07-17 10:34:35 -04:00
2014-07-20 10:06:24 -04:00
### Database
2014-11-20 13:10:27 -05:00
* NoSQL
2014-12-21 13:28:41 -05:00
* Redis
2015-01-10 10:00:59 -05:00
* [mitsuhiko/redis-rs ](https://github.com/mitsuhiko/redis-rs ) — [Redis ](http://redis.io ) library in Rust [<img src="https://travis-ci.org/mitsuhiko/redis-rs.svg?branch=master"> ](https://travis-ci.org/mitsuhiko/redis-rs )
2014-11-20 13:10:27 -05:00
* RethinkDB
2014-07-20 10:06:24 -04:00
* SQL
* MySql
2014-10-12 07:35:55 -04:00
* [blackbeam/rust-mysql-simple ](https://github.com/blackbeam/rust-mysql-simple ) — a native MySql client [<img src="https://travis-ci.org/blackbeam/rust-mysql-simple.svg?branch=master"> ](https://travis-ci.org/blackbeam/rust-mysql-simple )
2014-07-20 10:06:24 -04:00
* PostgreSql
2014-10-12 07:35:55 -04:00
* [sfackler/rust-postgres ](https://github.com/sfackler/rust-postgres ) — a native [PostgreSQL ](http://www.postgresql.org ) client [<img src="https://travis-ci.org/sfackler/rust-postgres.svg?branch=master"> ](https://travis-ci.org/sfackler/rust-postgres )
2014-07-20 10:06:24 -04:00
* Sqlite
2015-01-09 15:37:09 -05:00
* [linuxfood/rustsqlite ](https://github.com/linuxfood/rustsqlite ) — [Sqlite3 ](http://www.sqlite.org/ ) bindings [<img src="https://travis-ci.org/linuxfood/rustsqlite.svg?branch=master"> ](https://travis-ci.org/linuxfood/rustsqlite )
2014-07-20 10:06:24 -04:00
2014-12-16 15:49:42 -05:00
### Date and time
* [lifthrasiir/rust-chrono ](https://github.com/lifthrasiir/rust-chrono ) — [<img src="https://travis-ci.org/lifthrasiir/rust-chrono.svg?branch=master"> ](https://travis-ci.org/lifthrasiir/rust-chrono )
2014-12-16 15:51:38 -05:00
* [rust-lang/time ](https://github.com/rust-lang/time ) — [<img src="https://travis-ci.org/rust-lang/time.svg?branch=master"> ](https://travis-ci.org/rust-lang/time )
2014-12-16 15:49:42 -05:00
2014-07-20 08:56:41 -04:00
### Encoding
2014-12-13 04:36:39 -05:00
* [TyOverby/bincode ](https://github.com/TyOverby/bincode ) — a binary encoder/decoder in Rust [<img src="https://travis-ci.org/TyOverby/bincode.svg?branch=master"> ](https://travis-ci.org/TyOverby/bincode )
2015-01-08 14:21:40 -05:00
* Bencode
* [arjantop/rust-bencode ](https://github.com/arjantop/rust-bencode ) — [Bencode ](http://en.wikipedia.org/wiki/Bencode ) implementation in Rust [<img src="https://travis-ci.org/arjantop/rust-bencode.svg?branch=master"> ](https://travis-ci.org/arjantop/rust-bencode )
2014-07-20 08:56:41 -04:00
* Cap'n Proto
2014-10-12 07:35:55 -04:00
* [dwrensha/capnproto-rust ](https://github.com/dwrensha/capnproto-rust ) — [<img src="https://travis-ci.org/dwrensha/capnproto-rust.svg?branch=master"> ](https://travis-ci.org/dwrensha/capnproto-rust )
2014-07-20 08:56:41 -04:00
* Character Encoding
2014-10-12 07:35:55 -04:00
* [lifthrasiir/rust-encoding ](https://github.com/lifthrasiir/rust-encoding ) — [<img src="https://travis-ci.org/lifthrasiir/rust-encoding.svg?branch=master"> ](https://travis-ci.org/lifthrasiir/rust-encoding )
2014-07-20 08:56:41 -04:00
* CSV
2015-01-22 13:17:52 -05:00
* [BurntSushi/rust-csv ](https://github.com/BurntSushi/rust-csv ) — [<img src="https://travis-ci.org/BurntSushi/rust-csv.svg?branch=master"> ](https://travis-ci.org/BurntSushi/rust-csv )
2014-10-18 10:07:46 -04:00
* HTML
* [servo/html5ever ](https://github.com/servo/html5ever ) — High-performance browser-grade HTML5 parser [<img src="https://travis-ci.org/servo/html5ever.svg?branch=master"> ](https://travis-ci.org/servo/html5ever )
2014-07-20 08:56:41 -04:00
* MsgPck
2014-10-12 07:35:55 -04:00
* [mneumann/rust-msgpack ](https://github.com/mneumann/rust-msgpack ) — [<img src="https://travis-ci.org/mneumann/rust-msgpack.svg?branch=master"> ](https://travis-ci.org/mneumann/rust-msgpack )
2014-07-20 08:56:41 -04:00
* ProtocolBuffers
2014-10-12 07:35:55 -04:00
* [stepancheg/rust-protobuf ](https://github.com/stepancheg/rust-protobuf ) — [<img src="https://travis-ci.org/stepancheg/rust-protobuf.svg?branch=master"> ](https://travis-ci.org/stepancheg/rust-protobuf )
2014-07-20 08:56:41 -04:00
* TOML
2014-11-18 12:51:18 -05:00
* [alexcrichton/toml-rs ](https://github.com/alexcrichton/toml-rs ) — [<img src="https://travis-ci.org/alexcrichton/toml-rs.svg?branch=master"> ](https://travis-ci.org/alexcrichton/toml-rs )
2014-07-20 08:56:41 -04:00
* Tnetstring
2014-12-16 15:49:42 -05:00
* [erickt/rust-tnetstring ](https://github.com/erickt/rust-tnetstring ) — [<img src="https://travis-ci.org/erickt/rust-tnetstring.svg?branch=master"> ](https://travis-ci.org/erickt/rust-tnetstring )
2014-07-20 08:56:41 -04:00
* XML
2015-01-22 13:17:52 -05:00
* [Florob/RustyXML ](https://github.com/Florob/RustyXML ) — an XML parser written in Rust [<img src="https://travis-ci.org/Florob/RustyXML.svg?branch=master"> ](https://travis-ci.org/Florob/RustyXML )
2014-12-10 14:19:53 -05:00
* [netvl/xml-rs ](https://github.com/netvl/xml-rs ) — a streaming XML library [<img src="https://travis-ci.org/netvl/xml-rs.svg?branch=master"> ](https://travis-ci.org/netvl/xml-rs )
2014-12-10 14:17:31 -05:00
* YAML
2014-12-10 14:18:20 -05:00
* [kimhyunkang/libyaml-rust ](https://github.com/kimhyunkang/libyaml-rust ) — [libyaml ](http://pyyaml.org/wiki/LibYAML ) bindings [<img src="https://travis-ci.org/kimhyunkang/libyaml-rust.svg?branch=master"> ](https://travis-ci.org/kimhyunkang/libyaml-rust )
2014-07-20 08:56:41 -04:00
2014-07-21 02:21:16 -04:00
### Game development
2015-01-22 13:20:52 -05:00
* [bbodi/rust-voxlap ](https://github.com/bbodi/rust-voxlap ) — [Voxlap ](http://advsys.net/ken/voxlap.htm ) bindings
2015-01-22 13:17:52 -05:00
* [PistonDevelopers/piston ](https://github.com/PistonDevelopers/piston ) — [<img src="https://travis-ci.org/PistonDevelopers/piston.svg?branch=master"> ](https://travis-ci.org/PistonDevelopers/piston )
2014-10-13 12:20:56 -04:00
* [SiegeLord/RustAllegro ](https://github.com/SiegeLord/RustAllegro ) — [Allegro 5 ](http://liballeg.org/ ) bindings [<img src="https://travis-ci.org/SiegeLord/RustAllegro.svg?branch=master"> ](https://travis-ci.org/SiegeLord/RustAllegro )
2014-07-21 02:21:16 -04:00
2014-07-20 09:02:45 -04:00
### GUI
2014-07-20 08:56:41 -04:00
2014-07-20 09:02:45 -04:00
* Cocoa
2014-10-11 09:02:35 -04:00
* [mozilla-servo/rust-cocoa ](https://github.com/mozilla-servo/rust-cocoa )
* Gtk+
2015-01-22 13:20:52 -05:00
* [JeremyLetang/rgtk ](https://github.com/JeremyLetang/rgtk ) — [Gtk+ ](http://www.gtk.org ) bindings
2014-07-20 09:02:45 -04:00
* ncurses
2014-10-12 07:35:55 -04:00
* [jeaye/ncurses-rs ](https://github.com/jeaye/ncurses-rs ) — [<img src="https://travis-ci.org/jeaye/ncurses-rs.svg?branch=master"> ](https://travis-ci.org/jeaye/ncurses-rs )
2014-10-12 06:49:36 -04:00
* OpenGL
2015-01-22 13:17:52 -05:00
* [bjz/gl-rs ](https://github.com/bjz/gl-rs ) — [<img src="https://travis-ci.org/bjz/gl-rs.svg?branch=master"> ](https://travis-ci.org/bjz/gl-rs )
* [bjz/glfw-rs ](https://github.com/bjz/glfw-rs ) — [<img src="https://travis-ci.org/bjz/glfw-rs.svg?branch=master"> ](https://travis-ci.org/bjz/glfw-rs )
* [servo/rust-glut ](https://github.com/servo/rust-glut )
2014-10-23 12:48:17 -04:00
* [tomaka/glutin ](https://github.com/tomaka/glutin ) — Rust alternative to [GLFW ](http://www.glfw.org/ ) [<img src="https://travis-ci.org/tomaka/glutin.svg?branch=master"> ](https://travis-ci.org/tomaka/glutin )
2014-12-18 14:05:49 -05:00
* Qt
* [cyndis/qmlrs ](https://github.com/cyndis/qmlrs ) — [QtQuick ](http://doc.qt.io ) bindings [<img src="https://travis-ci.org/cyndis/qmlrs.svg?branch=master"> ](https://travis-ci.org/cyndis/qmlrs )
2014-08-06 04:34:31 -04:00
* SDL
2014-10-12 07:35:55 -04:00
* [AngryLawyer/rust-sdl2 ](https://github.com/AngryLawyer/rust-sdl2 ) — [SDL2 ](http://www.libsdl.org/ ) bindings [<img src="https://travis-ci.org/AngryLawyer/rust-sdl2.svg?branch=master"> ](https://travis-ci.org/AngryLawyer/rust-sdl2 )
* [brson/rust-sdl ](https://github.com/brson/rust-sdl ) — [SDL1 ](http://www.libsdl.org/ ) bindings [<img src="https://travis-ci.org/brson/rust-sdl.svg?branch=master"> ](https://travis-ci.org/brson/rust-sdl )
2014-10-12 07:24:24 -04:00
* SFML
2015-01-22 13:17:52 -05:00
* [jeremyletang/rust-sfml ](https://github.com/jeremyletang/rust-sfml ) — [SFML ](http://www.sfml-dev.org/ ) bindings [<img src="https://travis-ci.org/jeremyletang/rust-sfml.svg?branch=master"> ](https://travis-ci.org/jeremyletang/rust-sfml )
2014-07-20 09:02:45 -04:00
* Termbox
2015-01-22 13:17:52 -05:00
* [gchp/rustbox ](https://github.com/gchp/rustbox ) — a Rust implementation of [termbox ](http://github.com/nsf/termbox ) [<img src="https://travis-ci.org/gchp/rustbox.svg?branch=master"> ](https://travis-ci.org/gchp/rustbox )
2014-10-11 09:24:17 -04:00
* wxWidgets
2014-07-20 08:56:41 -04:00
2014-10-12 06:37:13 -04:00
### Image processing
2014-10-12 07:35:55 -04:00
* [PistonDevelopers/image ](https://github.com/PistonDevelopers/image ) — Basic imaging processing functions and methods for converting to and from image formats [<img src="https://travis-ci.org/PistonDevelopers/image.svg?branch=master"> ](https://travis-ci.org/PistonDevelopers/image )
2014-10-12 06:37:13 -04:00
2014-12-13 04:40:25 -05:00
### Mobile
2014-12-13 04:41:07 -05:00
* [tomaka/android-rs-glue ](https://github.com/tomaka/android-rs-glue ) — glue between Rust and Android [<img src="https://travis-ci.org/tomaka/android-rs-glue.svg?branch=master"> ](https://travis-ci.org/tomaka/android-rs-glue )
2014-12-13 04:48:48 -05:00
* [vhbit/ObjCrust ](https://github.com/vhbit/ObjCrust ) — using Rust to create an iOS static library [<img src="https://travis-ci.org/vhbit/ObjCrust.svg?branch=master"> ](https://travis-ci.org/vhbit/ObjCrust )
2014-12-13 04:40:25 -05:00
2014-07-20 10:30:14 -04:00
### Network programming
2014-10-14 14:02:41 -04:00
* Low level
2015-01-22 13:17:52 -05:00
* [libpnet/libpnet ](https://github.com/libpnet/libpnet ) — Cross-platform, low level networking [<img src="https://travis-ci.org/libpnet/libpnet.svg?branch=master"> ](https://travis-ci.org/libpnet/libpnet )
* Beanstalkd
* [schickling/rust-beanstalkd ](https://github.com/schickling/rust-beanstalkd ) — [Beanstalkd ](https://github.com/kr/beanstalkd ) bindings [<img src="https://travis-ci.org/schickling/rust-beanstalkd.svg?branch=master"> ](https://travis-ci.org/schickling/rust-beanstalkd )
2014-10-27 13:04:59 -04:00
* NanoMsg
* [thehydroimpulse/nanomsg.rs ](https://github.com/thehydroimpulse/nanomsg.rs ) — a modern messaging library that is the successor to ZeroMQ [<img src="https://travis-ci.org/thehydroimpulse/nanomsg.rs.svg?branch=master"> ](https://travis-ci.org/thehydroimpulse/nanomsg.rs )
2014-10-14 14:02:41 -04:00
* SSH
* [alexcrichton/ssh2-rs ](https://github.com/alexcrichton/ssh2-rs ) — [libssh2 ](http://www.libssh2.org/ ) bindings [<img src="https://travis-ci.org/alexcrichton/ssh2-rs.svg?branch=master"> ](https://travis-ci.org/alexcrichton/ssh2-rs )
* Stomp
2015-01-22 13:17:52 -05:00
* [zslayton/stomp-rs ](https://github.com/zslayton/stomp-rs ) — [STOMP 1.2 ](http://stomp.github.io/stomp-specification-1.2.html ) client implementation in Rust [<img src="https://travis-ci.org/zslayton/stomp-rs.svg?branch=master"> ](https://travis-ci.org/zslayton/stomp-rs )
2014-07-20 10:30:14 -04:00
* ZeroMQ
2014-12-16 15:49:42 -05:00
### Platform specific
* Linux
2014-12-16 15:51:38 -05:00
* [carllerche/nix-rust ](https://github.com/carllerche/nix-rust ) — Linux API bindings [<img src="https://travis-ci.org/carllerche/nix-rust.svg?branch=master"> ](https://travis-ci.org/carllerche/nix-rust )
2014-12-16 15:49:42 -05:00
2014-07-20 10:31:40 -04:00
### Template engine
* Mustache
2014-10-12 13:28:14 -04:00
* [rustache/rustache ](https://github.com/rustache/rustache ) — [<img src="https://travis-ci.org/rustache/rustache.svg?branch=master"> ](https://travis-ci.org/rustache/rustache )
2014-07-20 10:31:40 -04:00
2014-07-23 09:47:33 -04:00
### Testing
2014-10-12 07:35:55 -04:00
* [BurntSushi/quickcheck ](https://github.com/BurntSushi/quickcheck ) — a Rust implementation of [QuickCheck ](http://www.haskell.org/haskellwiki/Introduction_to_QuickCheck1 ) [<img src="https://travis-ci.org/BurntSushi/quickcheck.svg?branch=master"> ](https://travis-ci.org/BurntSushi/quickcheck )
2015-01-22 13:17:52 -05:00
* [farcaller/shiny ](https://github.com/farcaller/shiny ) — a fancy syntax similar to Ruby's Rspec or Objective-C' kiwi [<img src="https://travis-ci.org/farcaller/shiny.svg?branch=master"> ](https://travis-ci.org/farcaller/shiny )
2014-07-23 09:47:33 -04:00
2014-07-20 10:30:14 -04:00
### Web programming
2014-07-17 06:47:44 -04:00
2014-10-11 09:02:35 -04:00
See also [http://arewewebyet.com/ ](http://arewewebyet.com/ )
2014-07-17 06:47:44 -04:00
2014-10-11 09:02:35 -04:00
* Core
2014-10-12 07:35:55 -04:00
* [chris-morgan/rust-http ](https://github.com/chris-morgan/rust-http ) — will be replaced by [Teepee ](http://teepee.rs/ ) [<img src="https://travis-ci.org/chris-morgan/rust-http.svg?branch=master"> ](https://travis-ci.org/chris-morgan/rust-http )
2014-12-10 14:07:59 -05:00
* [hyperium/hyper ](https://github.com/hyperium/hyper ) — an HTTP implementation [<img src="https://travis-ci.org/hyperium/hyper.svg?branch=master"> ](https://travis-ci.org/hyperium/hyper )
2014-10-11 09:02:35 -04:00
* Client
2015-01-22 13:17:52 -05:00
* [carllerche/curl-rust ](https://github.com/carllerche/curl-rust ) — [libcurl ](http://curl.haxx.se/libcurl/ ) bindings [<img src="https://travis-ci.org/carllerche/curl-rust.svg?branch=master"> ](https://travis-ci.org/carllerche/curl-rust )
* [vhbit/curl-rs ](https://github.com/vhbit/curl-rs ) — [libcurl ](http://curl.haxx.se/libcurl/ ) bindings [<img src="https://travis-ci.org/vhbit/curl-rs.svg?branch=master"> ](https://travis-ci.org/vhbit/curl-rs )
2014-10-11 09:02:35 -04:00
* Server
2014-12-10 14:14:42 -05:00
* [Iron ](http://ironframework.io/ ) — a middleware-based server framework [<img src="https://travis-ci.org/iron/iron.svg?branch=master"> ](https://travis-ci.org/iron/iron )
2014-10-12 12:27:18 -04:00
* [Nickel ](http://nickel.rs/ ) — inspired by [Express ](http://expressjs.com/ ) [<img src="https://travis-ci.org/nickel-org/nickel.rs.svg?branch=master"> ](https://travis-ci.org/nickel-org/nickel.rs )
2014-12-16 15:49:42 -05:00
* [Ogeon/rustful ](https://github.com/Ogeon/rustful ) — a RESTful web framework for Rust [<img src="https://travis-ci.org/Ogeon/rustful.svg?branch=master"> ](https://travis-ci.org/Ogeon/rustful )
2014-12-10 14:14:42 -05:00
* [Rustless ](http://rustless.org/ ) — a REST-like API micro-framework inspired by [Grape ](https://github.com/intridea/grape ) and [Hyper ](https://github.com/hyperium/hyper ) [<img src="https://travis-ci.org/rustless/rustless.svg?branch=master"> ](https://travis-ci.org/rustless/rustless )
2014-07-18 02:16:18 -04:00
2014-07-17 09:05:35 -04:00
## Resources
2014-07-20 10:12:39 -04:00
2014-10-11 09:02:35 -04:00
* [Rust by Example ](http://rustbyexample.com/ )
2015-01-22 13:17:52 -05:00
* [Rust CI ](http://www.rust-ci.org/ ) — a [Travis CI ](https://travis-ci.com ) dashboard for Rust projects
* [Rust Guidelines ](http://aturon.github.io/ )