#semver #diff #cargo #rustdoc-json

public-api

List and diff the public API of Rust library crates. Relies on rustdoc JSON output from the nightly toolchain.

50 releases (25 breaking)

0.33.1 Nov 29, 2023
0.32.0 Aug 25, 2023
0.31.2 Jun 18, 2023
0.28.0 Mar 25, 2023
0.12.4 Jul 24, 2022

#268 in Development tools

Download history 1691/week @ 2024-01-05 2104/week @ 2024-01-12 2350/week @ 2024-01-19 2392/week @ 2024-01-26 1212/week @ 2024-02-02 1759/week @ 2024-02-09 1608/week @ 2024-02-16 1590/week @ 2024-02-23 1368/week @ 2024-03-01 1497/week @ 2024-03-08 798/week @ 2024-03-15 1083/week @ 2024-03-22 1147/week @ 2024-03-29 1367/week @ 2024-04-05 1286/week @ 2024-04-12 774/week @ 2024-04-19

4,717 downloads per month
Used in 12 crates (9 directly)

MIT license

105KB
2K SLoC

public-api

List and diff the public API of Rust library crates by analyzing rustdoc JSON output files from rustdoc +nightly.

Usage

… as a Rust library

See docs.rs for library documentation and example code.

… as a CLI

Use cargo public-api for CLI use cases.

… as a CI Check

With a regular cargo test that you run in CI you will be able to

  • prevent accidental changes to your public API
  • review the public API diff of deliberate changes

First add the latest versions of the necessary libraries to your [dev-dependencies]:

cargo add --dev \
    rustup-toolchain \
    rustdoc-json \
    public-api \
    expect-test

Then add the following test to your project. As the author of the below test code, I hereby associate it with CC0 and to the extent possible under law waive all copyright and related or neighboring rights to it:

#[test]
fn public_api() {
    // Install a compatible nightly toolchain if it is missing
    rustup_toolchain::install(public_api::MINIMUM_NIGHTLY_RUST_VERSION).unwrap();

    // Build rustdoc JSON
    let rustdoc_json = rustdoc_json::Builder::default()
        .toolchain(public_api::MINIMUM_NIGHTLY_RUST_VERSION)
        .build()
        .unwrap();

    // Derive the public API from the rustdoc JSON
    let public_api = public_api::Builder::from_rustdoc_json(rustdoc_json)
        .build()
        .unwrap();

    // Assert that the public API looks correct
    expect_test::expect_file!["public-api.txt"].assert_eq(&public_api.to_string());
}

Before you run the test the first time you need to bless the current public API:

UPDATE_EXPECT=1 cargo test public_api

This creates a tests/public-api.txt file in your project that you git add together with your other project files. Whenever you change the public API, you need to bless it again with the above command. If you forget to bless, the test will fail, together with instructions on how to bless.

Changelog

See CHANGELOG.md.

Maintainers

See here.

Dependencies

~0.8–1.6MB
~36K SLoC