From 827cc39588489b94d6f2b2d393b5404a9be3c642 Mon Sep 17 00:00:00 2001 From: Simon Walker Date: Sat, 15 Oct 2016 17:31:43 +0100 Subject: [PATCH 1/5] Add rust-fitsio fitsio is an FFI wrapper around the astronomy library [`cfitsio`][1] providing an interface to the standard astronomy file format "fits". [1]: http://heasarc.gsfc.nasa.gov/fitsio/fitsio.html --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 0d156d5..6a1d8b6 100644 --- a/README.md +++ b/README.md @@ -250,6 +250,7 @@ See also [http://areweideyet.com/](http://areweideyet.com/) and [Rust and IDEs]( * [saurvs/astro-rust](https://github.com/saurvs/astro-rust) — astronomy for Rust [](https://travis-ci.org/saurvs/astro-rust) * [flosse/rust-sun](https://github.com/flosse/rust-sun) — A rust port of the JS library suncalc [](https://travis-ci.org/flosse/rust-sun) +* [mindriot101/rust-fitsio](https://github.com/mindriot101/rust-fitsio) [[fitsio](https://crates.io/crates/fitsio)] — fits interface library wrapping cfitsio [](https://travis-ci.org/mindriot101/rust-fitsio) ### Asynchronous From 89a1f56ccc0888778e282da5c903f9fb8a7cde40 Mon Sep 17 00:00:00 2001 From: Simon Walker Date: Sat, 15 Oct 2016 17:34:11 +0100 Subject: [PATCH 2/5] Put packages in the correct order --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6a1d8b6..f02b1ba 100644 --- a/README.md +++ b/README.md @@ -249,8 +249,8 @@ See also [http://areweideyet.com/](http://areweideyet.com/) and [Rust and IDEs]( [[astronomy](https://crates.io/keywords/astronomy)] * [saurvs/astro-rust](https://github.com/saurvs/astro-rust) — astronomy for Rust [](https://travis-ci.org/saurvs/astro-rust) -* [flosse/rust-sun](https://github.com/flosse/rust-sun) — A rust port of the JS library suncalc [](https://travis-ci.org/flosse/rust-sun) * [mindriot101/rust-fitsio](https://github.com/mindriot101/rust-fitsio) [[fitsio](https://crates.io/crates/fitsio)] — fits interface library wrapping cfitsio [](https://travis-ci.org/mindriot101/rust-fitsio) +* [flosse/rust-sun](https://github.com/flosse/rust-sun) — A rust port of the JS library suncalc [](https://travis-ci.org/flosse/rust-sun) ### Asynchronous From 70b92b4fec5ccf08462eaa1c9dd1b82afebfe70d Mon Sep 17 00:00:00 2001 From: Chiu-Hsiang Hsu Date: Sun, 16 Oct 2016 14:25:45 +0800 Subject: [PATCH 3/5] add BurntSushi/cargo-benchcmp --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 0d156d5..67a6ae5 100644 --- a/README.md +++ b/README.md @@ -147,6 +147,7 @@ See also [Friends of Rust](https://www.rust-lang.org/friends.html) (organization * [sunng87/cargo-release](https://github.com/sunng87/cargo-release) [[cargo-release](https://crates.io/crates/cargo-release)] — tool for releasing git-managed cargo project, build, tag, publish, doc and push * [DanielKeep/cargo-script](https://github.com/DanielKeep/cargo-script) [[cargo-script](https://crates.io/crates/cargo-script)] — lets people quickly and easily run Rust "scripts" which can make use of Cargo's package ecosystem * [passcod/cargo-watch](https://github.com/passcod/cargo-watch) [[cargo-watch](https://crates.io/crates/cargo-watch)] — utility for cargo to compile projects when sources change [](https://travis-ci.org/passcod/cargo-watch) + * [BurntSushi/cargo-benchcmp](https://github.com/BurntSushi/cargo-benchcmp) [[cargo-benchcmp](https://crates.io/crates/cargo-benchcmp)] - utility to compare Rust micro-benchmarks * CMake * [SiegeLord/RustCMake](https://github.com/SiegeLord/RustCMake) — an example project showing usage of CMake with Rust [](https://travis-ci.org/SiegeLord/RustCMake) From 4916934c2a8af60d25c72d89c7bc1af62a7678d6 Mon Sep 17 00:00:00 2001 From: Thayne McCombs Date: Sun, 16 Oct 2016 16:23:16 -0600 Subject: [PATCH 4/5] Remove tangle Because it is deprecated in favor of futures-rs --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 0d156d5..bd85205 100644 --- a/README.md +++ b/README.md @@ -255,7 +255,6 @@ See also [http://areweideyet.com/](http://areweideyet.com/) and [Rust and IDEs]( ### Asynchronous * [zonyitoo/coio-rs](https://github.com/zonyitoo/coio-rs) — a coroutine I/O library with a working-stealing scheduler [](https://travis-ci.org/zonyitoo/coio-rs) -* [thehydroimpulse/tangle](https://github.com/thehydroimpulse/tangle) — a scala-inspired futures library [](https://travis-ci.org/thehydroimpulse/tangle) * [dpc/mioco](https://github.com/dpc/mioco) — Scalable, coroutine-based, asynchronous IO handling library [Travis CI Build Status](https://travis-ci.org/dpc/mioco) * [alexcrichton/futures-rs](https://github.com/alexcrichton/futures-rs) — Zero-cost futures in Rust [Travis CI Build Status](https://travis-ci.org/alexcrichton/futures-rs) * [carllerche/mio](https://github.com/carllerche/mio) — MIO is a lightweight IO library for Rust with a focus on adding as little overhead as possible over the OS abstractions [](https://travis-ci.org/carllerche/mio) From 730ac71520e39fe25792eca136eaa09cdd8228f9 Mon Sep 17 00:00:00 2001 From: kud1ing Date: Mon, 17 Oct 2016 08:52:58 +0200 Subject: [PATCH 5/5] add japaric/xargo --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 5142dee..392b0a7 100644 --- a/README.md +++ b/README.md @@ -164,6 +164,7 @@ See also [Friends of Rust](https://www.rust-lang.org/friends.html) (organization * Cross compiling * [japaric/rust-cross](https://github.com/japaric/rust-cross) — everything you need to know about cross compiling Rust programs [](https://travis-ci.org/japaric/rust-cross) + * [japaric/xargo](https://github.com/japaric/xargo) — effortless cross compilation of Rust programs to custom bare-metal targets like ARM Cortex-M [](https://travis-ci.org/japaric/xargo) * Raspberry Pi * [Ogeon/rust-on-raspberry-pi](https://github.com/Ogeon/rust-on-raspberry-pi) — instructions for how to cross compile Rust projects for the Raspberry Pi .