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

a Rust implementation of

This commit is contained in:
kud1ing 2014-10-12 12:27:37 +02:00
parent 7d761ce935
commit da01150512
2 changed files with 4 additions and 4 deletions

View File

@ -43,7 +43,7 @@ Only projects that are stable and useful to users are added. Projects that do no
### Command-line argument parsing ### Command-line argument parsing
* [docopt/docopt.rs](https://github.com/docopt/docopt.rs) — a [DocOpt](http://docopt.org) port to Rust * [docopt/docopt.rs](https://github.com/docopt/docopt.rs) — a Rust implementation of [DocOpt](http://docopt.org)
* [wycats/hammer.rs](https://github.com/wycats/hammer.rs) * [wycats/hammer.rs](https://github.com/wycats/hammer.rs)
### Compression ### Compression
@ -128,7 +128,7 @@ Only projects that are stable and useful to users are added. Projects that do no
### Testing ### Testing
* [BurntSushi/quickcheck](https://github.com/BurntSushi/quickcheck) — [QuickCheck](http://www.haskell.org/haskellwiki/Introduction_to_QuickCheck1) in Rust [<img src="https://travis-ci.org/BurntSushi/quickcheck.png?branch=master">](https://travis-ci.org/BurntSushi/quickcheck) * [BurntSushi/quickcheck](https://github.com/BurntSushi/quickcheck) — a Rust implementation of [QuickCheck](http://www.haskell.org/haskellwiki/Introduction_to_QuickCheck1) [<img src="https://travis-ci.org/BurntSushi/quickcheck.png?branch=master">](https://travis-ci.org/BurntSushi/quickcheck)
* [farcaller/shiny](https://github.com/farcaller/shiny) — a fancy syntax similar to ruby's rspec or Objective-C's kiwi * [farcaller/shiny](https://github.com/farcaller/shiny) — a fancy syntax similar to ruby's rspec or Objective-C's kiwi
### Web programming ### Web programming

View File

@ -52,7 +52,7 @@ DATA = \
}, },
"docopt/docopt.rs": { "docopt/docopt.rs": {
"url": "https://github.com/docopt/docopt.rs", "url": "https://github.com/docopt/docopt.rs",
"descr": "a " + md_link('DocOpt', 'http://docopt.org') + " port to Rust" "descr": "a Rust implementation of " + md_link('DocOpt', 'http://docopt.org')
}, },
"wycats/hammer.rs": { "wycats/hammer.rs": {
"url": "https://github.com/wycats/hammer.rs" "url": "https://github.com/wycats/hammer.rs"
@ -227,7 +227,7 @@ DATA = \
}, },
"BurntSushi/quickcheck": { "BurntSushi/quickcheck": {
"url": "https://github.com/BurntSushi/quickcheck", "url": "https://github.com/BurntSushi/quickcheck",
"descr": md_link('QuickCheck', 'http://www.haskell.org/haskellwiki/Introduction_to_QuickCheck1') + ' in Rust', "descr": 'a Rust implementation of ' + md_link('QuickCheck', 'http://www.haskell.org/haskellwiki/Introduction_to_QuickCheck1'),
"travis_url": "https://travis-ci.org/BurntSushi/quickcheck", "travis_url": "https://travis-ci.org/BurntSushi/quickcheck",
"travis_badge": "https://travis-ci.org/BurntSushi/quickcheck.png?branch=master" "travis_badge": "https://travis-ci.org/BurntSushi/quickcheck.png?branch=master"
}, },