diff --git a/README.md b/README.md index 8327f59..d41295f 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,7 @@ Only projects that are stable and useful to users are added. Projects that do no - [Games](#games) - [GUI](#gui) - [Image processing](#image-processing) + - [Mobile](#mobile) - [Network programming](#network-programming) - [Template engine](#template-engine) - [Testing](#testing) @@ -139,6 +140,9 @@ Only projects that are stable and useful to users are added. Projects that do no * [PistonDevelopers/image](https://github.com/PistonDevelopers/image) — Basic imaging processing functions and methods for converting to and from image formats [](https://travis-ci.org/PistonDevelopers/image) +### Mobile + + ### Network programming * Low level diff --git a/UNSTABLE.md b/UNSTABLE.md index aa17956..b21eb73 100644 --- a/UNSTABLE.md +++ b/UNSTABLE.md @@ -16,6 +16,7 @@ A list of awesome but unstable/experimental Rust projects which some day hopeful - [Games](#games) - [GUI](#gui) - [Image processing](#image-processing) + - [Mobile](#mobile) - [Network programming](#network-programming) - [Template engine](#template-engine) - [Testing](#testing) @@ -111,6 +112,10 @@ A list of awesome but unstable/experimental Rust projects which some day hopeful ### Image processing +### Mobile + +* [tomaka/android-rs-glue](https://github.com/tomaka/android-rs-glue) — glue between Rust and Android [](https://travis-ci.org/tomaka/android-rs-glue) + ### Network programming * Low level diff --git a/generate_markdown_files.py b/generate_markdown_files.py index c5756ad..40eff70 100644 --- a/generate_markdown_files.py +++ b/generate_markdown_files.py @@ -20,6 +20,13 @@ def md_link(name, url): """ DATA = \ { + 'tomaka/android-rs-glue': { + "url": 'https://github.com/tomaka/android-rs-glue', + "descr": 'glue between Rust and Android', + "travis_url": 'https://travis-ci.org/tomaka/android-rs-glue', + "travis_badge": 'https://travis-ci.org/tomaka/android-rs-glue.svg?branch=master', + "unstable": True + }, 'TyOverby/bincode': { "url": 'https://github.com/TyOverby/bincode', "descr": 'a binary encoder/decoder in Rust', @@ -550,6 +557,7 @@ TOC = \ - [Games](#games) - [GUI](#gui) - [Image processing](#image-processing) + - [Mobile](#mobile) - [Network programming](#network-programming) - [Template engine](#template-engine) - [Testing](#testing) @@ -735,6 +743,9 @@ entry( ' * ', 'kenz-gelsoft/wxRust', rows_stable, rows_unstable ) add( '\n### Image processing\n', rows_stable, rows_unstable ) entry( '* ', 'PistonDevelopers/image', rows_stable, rows_unstable ) +add( '\n### Mobile\n', rows_stable, rows_unstable ) +entry( '* ', 'tomaka/android-rs-glue', rows_stable, rows_unstable ) + add( '\n### Network programming\n', rows_stable, rows_unstable ) add( '* Low level', rows_stable, rows_unstable ) entry( ' * ', 'libpnet/libpnet', rows_stable, rows_unstable )