#public-api #cargo-toml #external #static-analysis #toml-config #type #error

bin+lib cargo-check-external-types

Static analysis tool to detect external types exposed in a library's public API

13 releases

0.1.11 Feb 15, 2024
0.1.10 Oct 19, 2023
0.1.7 Jun 8, 2023
0.1.6 Nov 28, 2022
0.0.0 Aug 11, 2022

#75 in Filesystem

Download history 156/week @ 2023-12-23 237/week @ 2023-12-30 246/week @ 2024-01-06 286/week @ 2024-01-13 384/week @ 2024-01-20 418/week @ 2024-01-27 309/week @ 2024-02-03 636/week @ 2024-02-10 464/week @ 2024-02-17 563/week @ 2024-02-24 342/week @ 2024-03-02 745/week @ 2024-03-09 475/week @ 2024-03-16 566/week @ 2024-03-23 421/week @ 2024-03-30 317/week @ 2024-04-06

1,925 downloads per month

Apache-2.0

79KB
1.5K SLoC

cargo-check-external-types

cargo-check-external-types is a static analysis tool for Rust library authors to set and verify which types from other libraries are allowed to be exposed in their public API. This is useful for ensuring that a breaking change to a dependency doesn't force a breaking change in the library that's using it.

The tool has two output formats to cover different use-cases:

  • errors (the default): Output error messages for each type that is exposed in the public API and exit with status 1 if there is at least one error. This is useful for continuous integration.
  • markdown-table: Output the places types are exposed as a Markdown table. This is intended as a discovery tool for established projects.

The tool has an optional configuration file where types can by explicitly allowed.

Example Output

The test suite has a Rust library that relies on some external types. When the tool is run against this library without any configuration, it emits errors for each occurrence of an external type in the public API.

When a config file is provided, the allowed external types no longer show up in the output.

When the output format is set to markdown-table, then a table of external types is output.

How to Use

Important: This tool requires a nightly build of Rust to be installed since it relies on the rustdoc JSON output, which hasn't been stabilized yet. It was last tested against nightly-2024-02-07.

To install, run the following from this README path:

cargo install --locked cargo-check-external-types

Then, in your library crate path, run:

cargo +nightly check-external-types

This will produce errors if any external types are used in a public API at all. That's not terribly useful on its own, so the tool can be given configuration in your crate's Cargo.toml to allow certain types. For example, we can allow any type in bytes by adding this metadata to your crate's Cargo.toml:

[package.metadata.cargo_check_external_types]
allowed_external_types = ["bytes::*"]

Or, if you'd prefer, you can create a separate configuration file with the content:

allowed_external_types = [
    "bytes::*",
]

Save that file somewhere in your project (in this example, we choose the name external-types.toml), and then run the command with:

cargo +nightly check-external-types --config external-types.toml

If both a Cargo.toml package metadata section and a --config flag are provided, the --config flag will be used instead of the package metadata.

Caveats

When public types and modules declared inside a #[doc(hidden)] module are reexported from a public module, they aren't checked for external types. This is because of how they are recorded in RustDoc's index. When such types and modules are encountered by this tool, a warning will be logged.

Security

See CONTRIBUTING for more information.

License

This project is licensed under the Apache-2.0 License.

Dependencies

~9–20MB
~234K SLoC