1
0
mirror of https://github.com/rust-unofficial/awesome-rust.git synced 2025-01-29 22:01:07 +02:00

add vhbit/ObjCrust

This commit is contained in:
kud1ing 2014-12-13 10:48:48 +01:00
parent 8899023bbc
commit de8910ceb0
2 changed files with 10 additions and 1 deletions

View File

@ -143,6 +143,7 @@ Only projects that are stable and useful to users are added. Projects that do no
### Mobile
* [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)
* [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)
### Network programming

View File

@ -15,11 +15,18 @@ def md_link(name, url):
"descr": md_link('', '') + ' bindings',
"travis_url": 'https://travis-ci.org/',
"travis_badge": 'https://travis-ci.org/.svg?branch=master',
"unstable": True
"unstable": False
},
"""
DATA = \
{
'vhbit/ObjCrust': {
"url": 'https://github.com/vhbit/ObjCrust',
"descr": 'using Rust to create an iOS static library',
"travis_url": 'https://travis-ci.org/vhbit/ObjCrust',
"travis_badge": 'https://travis-ci.org/vhbit/ObjCrust.svg?branch=master',
"unstable": False
},
'tomaka/android-rs-glue': {
"url": 'https://github.com/tomaka/android-rs-glue',
"descr": 'glue between Rust and Android',
@ -745,6 +752,7 @@ entry( '* ', 'PistonDevelopers/image', rows_stable, rows_unstable )
add( '\n### Mobile\n', rows_stable, rows_unstable )
entry( '* ', 'tomaka/android-rs-glue', rows_stable, rows_unstable )
entry( '* ', 'vhbit/ObjCrust', rows_stable, rows_unstable )
add( '\n### Network programming\n', rows_stable, rows_unstable )
add( '* Low level', rows_stable, rows_unstable )