refactor, add applications

pull/9/head
kud1ing 10 years ago
parent 210234f117
commit 81cebb1a09

@ -30,6 +30,13 @@ Only projects that are stable and useful to users are added. Projects that do no
## Applications
* [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)
* [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)
### Games
* [Coeuvre/rust-2048](https://github.com/Coeuvre/rust-2048)
* [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)
## Frameworks
@ -120,11 +127,6 @@ Only projects that are stable and useful to users are added. Projects that do no
* [PistonDevelopers/piston](https://github.com/pistondevelopers/piston) — [<img src="https://travis-ci.org/PistonDevelopers/piston.svg?branch=master">](https://travis-ci.org/PistonDevelopers/piston)
* [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)
### Games
* [Coeuvre/rust-2048](https://github.com/Coeuvre/rust-2048)
* [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)
### GUI
* Cocoa

@ -28,6 +28,21 @@ A list of awesome but unstable/experimental Rust projects which some day hopeful
## Applications
### Games
* [Arcterus/game-of-life](https://github.com/Arcterus/game-of-life)
* [Arcterus/rust-snake](https://github.com/Arcterus/rust-snake)
* [bachm/rusty-tetris](https://github.com/bachm/rusty-tetris)
* [bvssvni/rust-snake](https://github.com/bvssvni/rust-snake)
* [Coeuvre/rust-pong](https://github.com/Coeuvre/rust-pong)
* [dpc/rustyhex](https://github.com/dpc/rustyhex)
* [FrozenCow/rust-airhockey](https://github.com/FrozenCow/rust-airhockey)
* [jeaye/q3](https://github.com/jeaye/q3)
* [mynery/xxo](https://github.com/mynery/xxo)
* [ozkriff/marauder](https://github.com/ozkriff/marauder)
* [rlane/cubeland](https://github.com/rlane/cubeland)
* [zokier/pong-rs](https://github.com/zokier/pong-rs)
## Frameworks
@ -88,21 +103,6 @@ A list of awesome but unstable/experimental Rust projects which some day hopeful
* [sebcrozet/ncollide](https://github.com/sebcrozet/ncollide)
* [sebcrozet/nphysics](https://github.com/sebcrozet/nphysics)
### Games
* [Arcterus/game-of-life](https://github.com/Arcterus/game-of-life)
* [Arcterus/rust-snake](https://github.com/Arcterus/rust-snake)
* [bachm/rusty-tetris](https://github.com/bachm/rusty-tetris)
* [bvssvni/rust-snake](https://github.com/bvssvni/rust-snake)
* [Coeuvre/rust-pong](https://github.com/Coeuvre/rust-pong)
* [dpc/rustyhex](https://github.com/dpc/rustyhex)
* [FrozenCow/rust-airhockey](https://github.com/FrozenCow/rust-airhockey)
* [jeaye/q3](https://github.com/jeaye/q3)
* [mynery/xxo](https://github.com/mynery/xxo)
* [ozkriff/marauder](https://github.com/ozkriff/marauder)
* [rlane/cubeland](https://github.com/rlane/cubeland)
* [zokier/pong-rs](https://github.com/zokier/pong-rs)
### GUI
* Cocoa

@ -20,7 +20,20 @@ def md_link(name, url):
"""
DATA = \
{
'gchp/iota': {
"url": 'https://github.com/gchp/iota',
"descr": 'A simple text editor written in Rust',
"travis_url": 'https://travis-ci.org/gchp/iota',
"travis_badge": 'https://travis-ci.org/gchp/iota.svg?branch=master',
"unstable": False
},
'uutils/coreutils': {
"url": 'https://github.com/uutils/coreutils',
"descr": 'Cross-platform Rust rewrite of the GNU coreutils',
"travis_url": 'https://travis-ci.org/uutils/coreutils',
"travis_badge": 'https://travis-ci.org/uutils/coreutils.svg?branch=master',
"unstable": False
},
'lifthrasiir/rust-chrono': {
"url": 'https://github.com/lifthrasiir/rust-chrono',
"descr": '',
@ -657,6 +670,25 @@ rows_stable = [HEADER_STABLE, TOC]
rows_unstable = [HEADER_UNSTABLE, TOC]
add( '## Applications\n', rows_stable, rows_unstable )
entry( '* ', 'gchp/iota', rows_stable, rows_unstable )
entry( '* ', 'uutils/coreutils', rows_stable, rows_unstable )
add( '\n### Games\n', rows_stable, rows_unstable )
entry( '* ', 'Arcterus/game-of-life', rows_stable, rows_unstable )
entry( '* ', 'Arcterus/rust-snake', rows_stable, rows_unstable )
entry( '* ', 'bachm/rusty-tetris', rows_stable, rows_unstable )
entry( '* ', 'bvssvni/rust-snake', rows_stable, rows_unstable )
entry( '* ', 'Coeuvre/rust-2048', rows_stable, rows_unstable )
entry( '* ', 'Coeuvre/rust-pong', rows_stable, rows_unstable )
entry( '* ', 'dpc/rustyhex', rows_stable, rows_unstable )
entry( '* ', 'FrozenCow/rust-airhockey', rows_stable, rows_unstable )
entry( '* ', 'jeaye/q3', rows_stable, rows_unstable )
entry( '* ', 'lifthrasiir/angolmois-rust', rows_stable, rows_unstable )
entry( '* ', 'mynery/xxo', rows_stable, rows_unstable )
entry( '* ', 'ozkriff/marauder', rows_stable, rows_unstable )
entry( '* ', 'rlane/cubeland', rows_stable, rows_unstable )
entry( '* ', 'zokier/pong-rs', rows_stable, rows_unstable )
add( '## Frameworks\n', rows_stable, rows_unstable )
@ -746,22 +778,6 @@ entry( '* ', 'sebcrozet/ncollide', rows_stable, rows_unstable )
entry( '* ', 'sebcrozet/nphysics', rows_stable, rows_unstable )
entry( '* ', 'SiegeLord/RustAllegro', rows_stable, rows_unstable )
add( '\n### Games\n', rows_stable, rows_unstable )
entry( '* ', 'Arcterus/game-of-life', rows_stable, rows_unstable )
entry( '* ', 'Arcterus/rust-snake', rows_stable, rows_unstable )
entry( '* ', 'bachm/rusty-tetris', rows_stable, rows_unstable )
entry( '* ', 'bvssvni/rust-snake', rows_stable, rows_unstable )
entry( '* ', 'Coeuvre/rust-2048', rows_stable, rows_unstable )
entry( '* ', 'Coeuvre/rust-pong', rows_stable, rows_unstable )
entry( '* ', 'dpc/rustyhex', rows_stable, rows_unstable )
entry( '* ', 'FrozenCow/rust-airhockey', rows_stable, rows_unstable )
entry( '* ', 'jeaye/q3', rows_stable, rows_unstable )
entry( '* ', 'lifthrasiir/angolmois-rust', rows_stable, rows_unstable )
entry( '* ', 'mynery/xxo', rows_stable, rows_unstable )
entry( '* ', 'ozkriff/marauder', rows_stable, rows_unstable )
entry( '* ', 'rlane/cubeland', rows_stable, rows_unstable )
entry( '* ', 'zokier/pong-rs', rows_stable, rows_unstable )
add( '\n### GUI\n', rows_stable, rows_unstable )
add( '* Cocoa', rows_stable, rows_unstable )
entry( ' * ', 'mozilla-servo/rust-cocoa', rows_stable, rows_unstable )

Loading…
Cancel
Save