cyndis/qmlrs

pull/9/head
kud1ing 10 years ago
parent 9116843d6b
commit 394c7bd033

@ -143,6 +143,8 @@ Only projects that are stable and useful to users are added. Projects that do no
* [bjz/glfw-rs](https://github.com/bjz/glfw-rs)
* [servo/rust-glut](https://github.com/mozilla-servo/rust-glut)
* [tomaka/glutin](https://github.com/tomaka/glutin) — Rust alternative to [GLFW](http://www.glfw.org/) [<img src="https://travis-ci.org/tomaka/glutin.svg?branch=master">](https://travis-ci.org/tomaka/glutin)
* Qt
* [cyndis/qmlrs](https://github.com/cyndis/qmlrs) — [QtQuick](http://doc.qt.io) bindings [<img src="https://travis-ci.org/cyndis/qmlrs.svg?branch=master">](https://travis-ci.org/cyndis/qmlrs)
* SDL
* [AngryLawyer/rust-sdl2](https://github.com/AngryLawyer/rust-sdl2) — [SDL2](http://www.libsdl.org/) bindings [<img src="https://travis-ci.org/AngryLawyer/rust-sdl2.svg?branch=master">](https://travis-ci.org/AngryLawyer/rust-sdl2)
* [brson/rust-sdl](https://github.com/brson/rust-sdl) — [SDL1](http://www.libsdl.org/) bindings [<img src="https://travis-ci.org/brson/rust-sdl.svg?branch=master">](https://travis-ci.org/brson/rust-sdl)

@ -112,6 +112,7 @@ A list of awesome but unstable/experimental Rust projects which some day hopeful
* ncurses
* OpenGL
* [servo/rust-opengles](https://github.com/servo/rust-opengles)
* Qt
* SDL
* SFML
* Termbox

@ -20,6 +20,13 @@ def md_link(name, url):
"""
DATA = \
{
'cyndis/qmlrs': {
"url": 'https://github.com/cyndis/qmlrs',
"descr": md_link('QtQuick', 'http://doc.qt.io') + ' bindings',
"travis_url": 'https://travis-ci.org/cyndis/qmlrs',
"travis_badge": 'https://travis-ci.org/cyndis/qmlrs.svg?branch=master',
"unstable": False
},
'Servo': {
"url": 'https://github.com/servo/servo',
"descr": 'a prototype web browser engine written in Rust',
@ -797,6 +804,8 @@ entry( ' * ', 'bjz/glfw-rs', rows_stable, rows_unstable )
entry( ' * ', 'servo/rust-glut', rows_stable, rows_unstable )
entry( ' * ', 'servo/rust-opengles', rows_stable, rows_unstable )
entry( ' * ', 'tomaka/glutin', rows_stable, rows_unstable )
add( '* Qt', rows_stable, rows_unstable )
entry( ' * ', 'cyndis/qmlrs', rows_stable, rows_unstable )
add( '* SDL', rows_stable, rows_unstable )
entry( ' * ', 'AngryLawyer/rust-sdl2', rows_stable, rows_unstable )
entry( ' * ', 'brson/rust-sdl', rows_stable, rows_unstable )

Loading…
Cancel
Save