List and diff the public API of Rust library crates between releases and commits. Allows you to detect breaking API changes and semver violations. Relies on and automatically builds rustdoc JSON, for which a recent version of the Rust nighty toolchain must be installed.
```
cargo install cargo-public-api
rustup install nightly ```
This example lists the public API of the ubiquitous regex
crate. First let's clone the repo:
% git clone https://github.com/rust-lang/regex ~/src/regex
Now we can list the public API of regex
by doing
% cd ~/src/regex
% cargo public-api
which will print the public API of regex
with one line per public item in the API:
To diff the API between say 1.3.0 and 1.4.0 of regex
, use --diff-git-checkouts
while standing in the git repo. Like this:
% cd ~/src/regex
% cargo public-api --diff-git-checkouts 1.3.0 1.4.0
and the API diff will be printed:
```
(none)
(none)
pub fn regex::Match::range(&self) -> Range
You can also manually do a diff by writing the full list of items to a file for two different versions of your library and then do a regular diff
between the files.
Currently there are two output formats. You can choose between --output-format plain
(default) and --output-format markdown
.
Maintainers of Rust libraries that want to keep track of changes to their public API.
This utility is implemented with and adds conveniences on top of the public-api library (https://github.com/Enselic/public-api).
See development.md.