From a801dbf1604f437ac00e598c9588031f7d5fc63c Mon Sep 17 00:00:00 2001 From: Kevin K Date: Sun, 23 Aug 2015 15:32:04 -0400 Subject: [PATCH 1/2] clog moved and split between cli and lib on github --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ca62d9c..b17a669 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ The goal is to have only projects that are mostly stable and useful to users. * [MaidSafe](http://maidsafe.net/) — a decentralized platform. * [seppo0010/rsedis](https://github.com/seppo0010/rsedis) — Redis reimplementation in Rust. [](https://travis-ci.org/seppo0010/rsedis) * [Servo](https://github.com/servo/servo) — a prototype web browser engine written in Rust -* [thoughtram/clog](https://github.com/thoughtram/clog) — a [conventional changelog](http://blog.thoughtram.io/announcements/tools/2014/09/18/announcing-clog-a-conventional-changelog-generator-for-the-rest-of-us.html) port (generates a changelog from git metadata) [](https://travis-ci.org/thoughtram/clog) +* [clog-tool/clog-cli](https://github.com/clog-tool/clog-cli) — a [conventional changelog](http://blog.thoughtram.io/announcements/tools/2014/09/18/announcing-clog-a-conventional-changelog-generator-for-the-rest-of-us.html) port (generates a changelog from git metadata) [](https://travis-ci.org/clog-tool/clog-cli) * [uutils/coreutils](https://github.com/uutils/coreutils) — cross-platform Rust rewrite of the GNU coreutils [](https://travis-ci.org/uutils/coreutils) ### Games @@ -72,6 +72,7 @@ The goal is to have only projects that are mostly stable and useful to users. * [Cargo](http://crates.io/) — the Rust package manager * CMake * [SiegeLord/RustCMake](https://github.com/SiegeLord/RustCMake) — an example project showing usage of CMake with Rust [](https://travis-ci.org/SiegeLord/RustCMake) +* [clog-tool/clog-lib](https://github.com/clog-tool/clog-lib) — a library for generating a changelogs from git metadata [](https://travis-ci.org/clog-tool/clog-lib) ### Command-line argument parsing From c39a550e88e5a1dffd913b1dfa8a5893ec589d8e Mon Sep 17 00:00:00 2001 From: Kevin K Date: Sun, 23 Aug 2015 15:51:43 -0400 Subject: [PATCH 2/2] adds third part cargo subcommands --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index b17a669..fd09899 100644 --- a/README.md +++ b/README.md @@ -70,6 +70,12 @@ The goal is to have only projects that are mostly stable and useful to users. ### Build system * [Cargo](http://crates.io/) — the Rust package manager + * [rsolomo/cargo-check](https://github.com/rsolomo/cargo-check) - a wrapper around `cargo rustc -- -Zno-trans` which can be helpful for running a faster compile if you only need correctness checks [](https://travis-ci.org/rsolomo/cargo-check) + * [kbknapp/cargo-count](https://github.com/kbknapp/cargo-count) - lists source code counts and details about cargo projects, including unsafe statistics [](https://travis-ci.org/kbknapp/cargo-count) + * [maxsnew/cargo-dot](https://github.com/maxsnew/cargo-dot) - Generate graphs of a Cargo project's dependencies [](https://travis-ci.org/maxsnew/cargo-dot) + * [killercup/cargo-edit](https://github.com/killercup/cargo-edit) - allows you to add and list dependencies by reading/writing to your Cargo.toml file from the command line [](https://travis-ci.org/killercup/cargo-edit) + * [kbknapp/cargo-outdated](https://github.com/kbknapp/cargo-outdated) - displays when newer versions of Rust dependencies are available, or out of date [](https://travis-ci.org/kbknapp/cargo-outdated) + * [DanielKeep/cargo-script](https://github.com/DanielKeep/cargo-script) - lets people quickly and easily run Rust "scripts" which can make use of Cargo's package ecosystem * CMake * [SiegeLord/RustCMake](https://github.com/SiegeLord/RustCMake) — an example project showing usage of CMake with Rust [](https://travis-ci.org/SiegeLord/RustCMake) * [clog-tool/clog-lib](https://github.com/clog-tool/clog-lib) — a library for generating a changelogs from git metadata [](https://travis-ci.org/clog-tool/clog-lib)