mirror of
https://github.com/rust-unofficial/awesome-rust.git
synced 2025-02-24 16:07:15 -05:00
add PistonDevelopers/image
This commit is contained in:
parent
8abad8021a
commit
15536c3a97
2 changed files with 27 additions and 12 deletions
|
@ -17,6 +17,7 @@ Only projects that are stable and useful to users are added. Projects that do no
|
||||||
- [Game development](#game-development)
|
- [Game development](#game-development)
|
||||||
- [Games](#games)
|
- [Games](#games)
|
||||||
- [GUI](#gui)
|
- [GUI](#gui)
|
||||||
|
- [Image processing](#image-processing)
|
||||||
- [Network programming](#network-programming)
|
- [Network programming](#network-programming)
|
||||||
- [Template engine](#template-engine)
|
- [Template engine](#template-engine)
|
||||||
- [Testing](#testing)
|
- [Testing](#testing)
|
||||||
|
@ -95,7 +96,6 @@ Only projects that are stable and useful to users are added. Projects that do no
|
||||||
|
|
||||||
### Game development
|
### Game development
|
||||||
|
|
||||||
* [JeremyLetang/rustenstein3D](https://github.com/JeremyLetang/rustenstein3D/) — a raycasting engine in rust
|
|
||||||
|
|
||||||
### Games
|
### Games
|
||||||
|
|
||||||
|
@ -116,6 +116,10 @@ Only projects that are stable and useful to users are added. Projects that do no
|
||||||
* [gchp/rustbox](https://github.com/gchp/rustbox) — a Rust implementation of [termbox]() http://github.com/nsf/termbox
|
* [gchp/rustbox](https://github.com/gchp/rustbox) — a Rust implementation of [termbox]() http://github.com/nsf/termbox
|
||||||
* wxWidgets
|
* wxWidgets
|
||||||
|
|
||||||
|
### Image processing
|
||||||
|
|
||||||
|
* [PistonDevelopers/image](https://github.com/PistonDevelopers/image) — Basic imaging processing functions and methods for converting to and from image formats [<img src="https://travis-ci.org/PistonDevelopers/image.png?branch=master">](https://travis-ci.org/PistonDevelopers/image)
|
||||||
|
|
||||||
### Network programming
|
### Network programming
|
||||||
|
|
||||||
* ZeroMQ
|
* ZeroMQ
|
||||||
|
|
|
@ -6,18 +6,18 @@ def md_link(name, url):
|
||||||
|
|
||||||
DATA = \
|
DATA = \
|
||||||
{
|
{
|
||||||
"seb-m/common.rs": {
|
"bjz/openal-rs": {
|
||||||
"url": 'https://github.com/klutzy/suruga',
|
"url": "https://github.com/bjz/openal-rs/",
|
||||||
"descr": 'Common Rust crypto utilities'
|
"descr": md_link('OpenAL 1.1', 'http://www.openal.org/') + " bindings"
|
||||||
|
},
|
||||||
|
"Cargo": {
|
||||||
|
"url": "http://crates.io",
|
||||||
|
"descr": "the Rust package manager"
|
||||||
},
|
},
|
||||||
"klutzy/suruga": {
|
"klutzy/suruga": {
|
||||||
"url": 'https://github.com/klutzy/suruga',
|
"url": 'https://github.com/klutzy/suruga',
|
||||||
"descr": 'a Rust implementation of ' + md_link('TLS 1.2', 'http://tools.ietf.org/html/rfc5246')
|
"descr": 'a Rust implementation of ' + md_link('TLS 1.2', 'http://tools.ietf.org/html/rfc5246')
|
||||||
},
|
},
|
||||||
"bjz/openal-rs": {
|
|
||||||
"url": "https://github.com/bjz/openal-rs/",
|
|
||||||
"descr": md_link('OpenAL 1.1', 'http://www.openal.org/') + " bindings"
|
|
||||||
},
|
|
||||||
"JeremyLetang/ears": {
|
"JeremyLetang/ears": {
|
||||||
"url": "https://github.com/JeremyLetang/ears",
|
"url": "https://github.com/JeremyLetang/ears",
|
||||||
"descr": "a simple library to play Sounds and Musics, on top of OpenAL and libsndfile",
|
"descr": "a simple library to play Sounds and Musics, on top of OpenAL and libsndfile",
|
||||||
|
@ -36,9 +36,15 @@ DATA = \
|
||||||
"travis_url": "https://travis-ci.org/musitdev/rust-portmidi",
|
"travis_url": "https://travis-ci.org/musitdev/rust-portmidi",
|
||||||
"travis_badge": "https://travis-ci.org/musitdev/rust-portmidi.png?branch=master"
|
"travis_badge": "https://travis-ci.org/musitdev/rust-portmidi.png?branch=master"
|
||||||
},
|
},
|
||||||
"Cargo": {
|
"PistonDevelopers/image": {
|
||||||
"url": "http://crates.io",
|
"url": "https://github.com/PistonDevelopers/image",
|
||||||
"descr": "the Rust package manager"
|
"descr": 'Basic imaging processing functions and methods for converting to and from image formats',
|
||||||
|
"travis_url": "https://travis-ci.org/PistonDevelopers/image",
|
||||||
|
"travis_badge": "https://travis-ci.org/PistonDevelopers/image.png?branch=master"
|
||||||
|
},
|
||||||
|
"seb-m/common.rs": {
|
||||||
|
"url": 'https://github.com/klutzy/suruga',
|
||||||
|
"descr": 'Common Rust crypto utilities'
|
||||||
},
|
},
|
||||||
"SiegeLord/RustCMake": {
|
"SiegeLord/RustCMake": {
|
||||||
"url": "https://github.com/SiegeLord/RustCMake",
|
"url": "https://github.com/SiegeLord/RustCMake",
|
||||||
|
@ -169,7 +175,8 @@ DATA = \
|
||||||
"url": "https://github.com/JeremyLetang/rustenstein3D/",
|
"url": "https://github.com/JeremyLetang/rustenstein3D/",
|
||||||
"descr": "a raycasting engine in rust",
|
"descr": "a raycasting engine in rust",
|
||||||
"travis_url": "",
|
"travis_url": "",
|
||||||
"travis_badge": ""
|
"travis_badge": "",
|
||||||
|
'unstable': True
|
||||||
},
|
},
|
||||||
"lifthrasiir/angolmois-rust": {
|
"lifthrasiir/angolmois-rust": {
|
||||||
"url": "https://github.com/lifthrasiir/angolmois-rust",
|
"url": "https://github.com/lifthrasiir/angolmois-rust",
|
||||||
|
@ -368,6 +375,7 @@ TOC = \
|
||||||
- [Game development](#game-development)
|
- [Game development](#game-development)
|
||||||
- [Games](#games)
|
- [Games](#games)
|
||||||
- [GUI](#gui)
|
- [GUI](#gui)
|
||||||
|
- [Image processing](#image-processing)
|
||||||
- [Network programming](#network-programming)
|
- [Network programming](#network-programming)
|
||||||
- [Template engine](#template-engine)
|
- [Template engine](#template-engine)
|
||||||
- [Testing](#testing)
|
- [Testing](#testing)
|
||||||
|
@ -511,6 +519,9 @@ entry( ' * ', 'gchp/rustbox', rows_stable, rows_unstable )
|
||||||
add( '* wxWidgets', rows_stable, rows_unstable )
|
add( '* wxWidgets', rows_stable, rows_unstable )
|
||||||
entry( ' * ', 'kenz-gelsoft/wxRust', rows_stable, rows_unstable )
|
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### Network programming\n', rows_stable, rows_unstable )
|
add( '\n### Network programming\n', rows_stable, rows_unstable )
|
||||||
add( '* ZeroMQ', rows_stable, rows_unstable )
|
add( '* ZeroMQ', rows_stable, rows_unstable )
|
||||||
entry( ' * ', 'erickt/rust-zmq', rows_stable, rows_unstable )
|
entry( ' * ', 'erickt/rust-zmq', rows_stable, rows_unstable )
|
||||||
|
|
Loading…
Add table
Reference in a new issue