mirror of
https://github.com/rust-unofficial/awesome-rust.git
synced 2025-07-31 22:02:13 -04:00
servo/html5ever
This commit is contained in:
parent
3f7f334bf2
commit
dbb10653bb
3 changed files with 19 additions and 0 deletions
|
@ -81,6 +81,8 @@ Only projects that are stable and useful to users are added. Projects that do no
|
||||||
* [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)
|
* [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)
|
||||||
* CSV
|
* CSV
|
||||||
* [BurntSushi/rust-csv](https://github.com/BurntSushi/rust-csv) — [<img src="https://api.travis-ci.org/BurntSushi/rust-csv.svg?branch=master">](https://travis-ci.org/BurntSushi/rust-csv)
|
* [BurntSushi/rust-csv](https://github.com/BurntSushi/rust-csv) — [<img src="https://api.travis-ci.org/BurntSushi/rust-csv.svg?branch=master">](https://travis-ci.org/BurntSushi/rust-csv)
|
||||||
|
* 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)
|
||||||
* MsgPck
|
* MsgPck
|
||||||
* [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)
|
* [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)
|
||||||
* ProtocolBuffers
|
* ProtocolBuffers
|
||||||
|
|
|
@ -59,6 +59,7 @@ A list of awesome but unstable/experimental Rust projects which some day hopeful
|
||||||
* Character Encoding
|
* Character Encoding
|
||||||
* CSV
|
* CSV
|
||||||
* [Geal/rust-csv](https://github.com/Geal/rust-csv) — [<img src="https://travis-ci.org/Geal/rust-csv.svg?branch=master">](https://travis-ci.org/Geal/rust-csv)
|
* [Geal/rust-csv](https://github.com/Geal/rust-csv) — [<img src="https://travis-ci.org/Geal/rust-csv.svg?branch=master">](https://travis-ci.org/Geal/rust-csv)
|
||||||
|
* HTML
|
||||||
* MsgPck
|
* MsgPck
|
||||||
* ProtocolBuffers
|
* ProtocolBuffers
|
||||||
* TOML
|
* TOML
|
||||||
|
|
|
@ -9,8 +9,22 @@ def md_link(name, url):
|
||||||
"Returns a web link in Markdown format"
|
"Returns a web link in Markdown format"
|
||||||
return '[%s](%s)' % (name, url)
|
return '[%s](%s)' % (name, url)
|
||||||
|
|
||||||
|
"""
|
||||||
|
'': {
|
||||||
|
"url": '',
|
||||||
|
"descr": md_link('', '') + ' bindings',
|
||||||
|
"travis_url": '',
|
||||||
|
"travis_badge": '',
|
||||||
|
},
|
||||||
|
"""
|
||||||
DATA = \
|
DATA = \
|
||||||
{
|
{
|
||||||
|
'servo/html5ever': {
|
||||||
|
"url": 'https://github.com/servo/html5ever',
|
||||||
|
"descr": 'High-performance browser-grade HTML5 parser',
|
||||||
|
"travis_url": 'https://travis-ci.org/servo/html5ever',
|
||||||
|
"travis_badge": 'https://travis-ci.org/servo/html5ever.svg?branch=master',
|
||||||
|
},
|
||||||
"alexcrichton/ssh2-rs": {
|
"alexcrichton/ssh2-rs": {
|
||||||
"url": "https://github.com/alexcrichton/ssh2-rs",
|
"url": "https://github.com/alexcrichton/ssh2-rs",
|
||||||
"descr": md_link('libssh2', 'http://www.libssh2.org/') + " bindings",
|
"descr": md_link('libssh2', 'http://www.libssh2.org/') + " bindings",
|
||||||
|
@ -577,6 +591,8 @@ entry( ' * ', 'lifthrasiir/rust-encoding', rows_stable, rows_unstable )
|
||||||
add( '* CSV', rows_stable, rows_unstable )
|
add( '* CSV', rows_stable, rows_unstable )
|
||||||
entry( ' * ', 'BurntSushi/rust-csv', rows_stable, rows_unstable )
|
entry( ' * ', 'BurntSushi/rust-csv', rows_stable, rows_unstable )
|
||||||
entry( ' * ', 'Geal/rust-csv', rows_stable, rows_unstable )
|
entry( ' * ', 'Geal/rust-csv', rows_stable, rows_unstable )
|
||||||
|
add( '* HTML', rows_stable, rows_unstable )
|
||||||
|
entry( ' * ', 'servo/html5ever', rows_stable, rows_unstable )
|
||||||
add( '* MsgPck', rows_stable, rows_unstable )
|
add( '* MsgPck', rows_stable, rows_unstable )
|
||||||
entry( ' * ', 'mneumann/rust-msgpack', rows_stable, rows_unstable )
|
entry( ' * ', 'mneumann/rust-msgpack', rows_stable, rows_unstable )
|
||||||
add( '* ProtocolBuffers', rows_stable, rows_unstable )
|
add( '* ProtocolBuffers', rows_stable, rows_unstable )
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue