mirror of
https://github.com/rust-unofficial/awesome-rust
synced 2024-11-22 20:03:07 +00:00
servo
This commit is contained in:
parent
58c2ecf164
commit
416bbb3a0d
3 changed files with 12 additions and 2 deletions
|
@ -6,6 +6,7 @@ Only projects that are stable and useful to users are added. Projects that do no
|
||||||
|
|
||||||
- [Awesome Rust](#awesome-rust)
|
- [Awesome Rust](#awesome-rust)
|
||||||
- [Applications](#applications)
|
- [Applications](#applications)
|
||||||
|
- [Games](#games)
|
||||||
- [Frameworks](#frameworks)
|
- [Frameworks](#frameworks)
|
||||||
- [Audio](#audio)
|
- [Audio](#audio)
|
||||||
- [Build system](#build-system)
|
- [Build system](#build-system)
|
||||||
|
@ -30,8 +31,9 @@ Only projects that are stable and useful to users are added. Projects that do no
|
||||||
|
|
||||||
## Applications
|
## 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)
|
* [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)
|
* [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)
|
||||||
|
* [Servo](https://github.com/servo/servo) — a prototype web browser engine written in Rust
|
||||||
|
|
||||||
### Games
|
### Games
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@ A list of awesome but unstable/experimental Rust projects which some day hopeful
|
||||||
|
|
||||||
- [Awesome Rust](#awesome-rust)
|
- [Awesome Rust](#awesome-rust)
|
||||||
- [Applications](#applications)
|
- [Applications](#applications)
|
||||||
|
- [Games](#games)
|
||||||
- [Frameworks](#frameworks)
|
- [Frameworks](#frameworks)
|
||||||
- [Audio](#audio)
|
- [Audio](#audio)
|
||||||
- [Build system](#build-system)
|
- [Build system](#build-system)
|
||||||
|
|
|
@ -20,9 +20,14 @@ def md_link(name, url):
|
||||||
"""
|
"""
|
||||||
DATA = \
|
DATA = \
|
||||||
{
|
{
|
||||||
|
'Servo': {
|
||||||
|
"url": 'https://github.com/servo/servo',
|
||||||
|
"descr": 'a prototype web browser engine written in Rust',
|
||||||
|
"unstable": False
|
||||||
|
},
|
||||||
'gchp/iota': {
|
'gchp/iota': {
|
||||||
"url": 'https://github.com/gchp/iota',
|
"url": 'https://github.com/gchp/iota',
|
||||||
"descr": 'A simple text editor written in Rust',
|
"descr": 'a simple text editor written in Rust',
|
||||||
"travis_url": 'https://travis-ci.org/gchp/iota',
|
"travis_url": 'https://travis-ci.org/gchp/iota',
|
||||||
"travis_badge": 'https://travis-ci.org/gchp/iota.svg?branch=master',
|
"travis_badge": 'https://travis-ci.org/gchp/iota.svg?branch=master',
|
||||||
"unstable": False
|
"unstable": False
|
||||||
|
@ -594,6 +599,7 @@ TOC = \
|
||||||
"""
|
"""
|
||||||
- [Awesome Rust](#awesome-rust)
|
- [Awesome Rust](#awesome-rust)
|
||||||
- [Applications](#applications)
|
- [Applications](#applications)
|
||||||
|
- [Games](#games)
|
||||||
- [Frameworks](#frameworks)
|
- [Frameworks](#frameworks)
|
||||||
- [Audio](#audio)
|
- [Audio](#audio)
|
||||||
- [Build system](#build-system)
|
- [Build system](#build-system)
|
||||||
|
@ -672,6 +678,7 @@ rows_unstable = [HEADER_UNSTABLE, TOC]
|
||||||
add( '## Applications\n', rows_stable, rows_unstable )
|
add( '## Applications\n', rows_stable, rows_unstable )
|
||||||
entry( '* ', 'gchp/iota', rows_stable, rows_unstable )
|
entry( '* ', 'gchp/iota', rows_stable, rows_unstable )
|
||||||
entry( '* ', 'uutils/coreutils', rows_stable, rows_unstable )
|
entry( '* ', 'uutils/coreutils', rows_stable, rows_unstable )
|
||||||
|
entry( '* ', 'Servo', rows_stable, rows_unstable )
|
||||||
|
|
||||||
add( '\n### Games\n', rows_stable, rows_unstable )
|
add( '\n### Games\n', rows_stable, rows_unstable )
|
||||||
entry( '* ', 'Arcterus/game-of-life', rows_stable, rows_unstable )
|
entry( '* ', 'Arcterus/game-of-life', rows_stable, rows_unstable )
|
||||||
|
|
Loading…
Reference in a new issue