Cargo tally

Number of crates that depend directly on Serde vs rustc-serialize Number of crates that depend directly on each Serde version Fraction of crates.io that depends transitively on libc

cargo tally is a Cargo subcommand for drawing graphs of the number of crates that depend directly or indirectly on a crate over time.

``` Usage: cargo tally --init cargo tally [options] ...

Options: --graph TITLE Display line graph using gnuplot, rather than dump csv --relative Display as a fraction of total crates, not absolute number --transitive Count transitive dependencies, not just direct dependencies --exclude REGEX Ignore a dependency coming from any crates matching regex ```

github crates.io build status

Installation

cargo install cargo-tally cargo tally --init


cargo tally --graph "Number of crates that depend directly on Serde vs rustc-serialize" rustc-serialize serde

Number of crates that depend directly on Serde vs rustc-serialize


cargo tally --exclude '^google-' --graph "Number of crates that depend directly on each Serde version" serde:0.5 serde:0.6 serde:0.7 serde:0.8 serde:0.9 serde:1.0

Number of crates that depend directly on each Serde version


cargo tally --graph "Fraction of crates.io that depends transitively on libc" --relative --transitive libc

Fraction of crates.io that depends transitively on libc


License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.


Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.