Summary

The rustdoc-types crate will go from being individually maintained to being officially maintained by the rustdoc team.

Motivation

rustdoc-types is a crate published on crates.io. It is used by users of the unstable rustdoc JSON backend to provide a type representing the output of rustdoc --output-format json. It’s published on crates.io to be used by out-of-tree tools that take rustdoc-json as an input. E.g:

NamePurpose
awslabs/cargo-check-external-typesHome-rolled version of RFC 1977 “private dependencies”. Checks if any types from the private dependency are used in a crate’s public API.
Enselic/cargo-public-apiCompares the public API of two crates. Used to check for semver violations.
obi1kenobi/trustfall-rustdoc-adapterHigher-level database-ish API for querying Rust API’s. Used by obi1kenobi/cargo-semver-checks

Currently I (@aDotInTheVoid) maintain the rustdoc-types crate on my personal GitHub. No-one else has either GitHub or crates.io permissions. This means if I become unable (or more likely disinterested), the crate will not see updates.

Additionally, if an update to rustdoc-json-types happens while I’m away from a computer for an extended period of time, there will be a delay in this update being published on crates.io. This happened with format_version 29, which was merged on April 8th, but was only published to crates.io on April 19th, due to personal reasons. This almost happened previously, but was avoided due to the bors queue being quiet at the time.

Guide-level explanation

This involves:

  1. Moving the github.com/aDotInTheVoid/rustdoc-types repo to the rust-lang organization, and make rust-lang/rustdoc maintainers/owners.
  2. Move ownership of rustdoc-types on crates.io to the rustdoc team.

Reference-level explanation

rustdoc-types is a republishing of the in-tree rustdoc-json-types crate. rustdoc-json-types is a dependency of librustdoc, and is the canonical source of truth for the rustdoc-json output format. Changes to the format are made as a PR to rust-lang/rust, and will modify src/rustdoc-json-types, src/librustdoc/json and tests/rustdoc-json. None of this will change.

Republishing rustdoc-json-types as rustdoc-types is done with a script so that it is as low maintenance as possible. This also ensures that all format/documentation changes happen in the rust-lang/rust repo, and go through the normal review process there.

The update/publishing process will be moved to T-rustdoc. In the medium term, I (@aDotInTheVoid) will still do it, but

  • In an official capacity
  • With bus factor for when I stop.

We (T-rustdoc) will continue to publish a new version of the rustdoc-types crate every time the upstream implementation changes, and these will be versioned with normal SemVer. Changes to rustdoc-json in rust-lang/rust will not be accepted if they would make it not possible to publish rustdoc-types (eg: using rustc_* crates, or nightly features).

Actual Mechanics of the move

GitHub

GitHub has a list of requirements for transferring repositories. T-infra will handle the permissions of moving the repository into the rust-lang GitHub organization.

At the end of this we should have a moved the [aDotInTheVoid/rustdoc-types] repo into the rust-lang GitHub org. T-rustdoc will have maintain permissions (via the team repo).

crates.io

crates.io ownership is managed via the command line.

I will run the following commands to move ownership.

cargo owner --add github:rust-lang:rustdoc
cargo owner --add rust-lang-owner
cargo owner --remove aDotInTheVoid

The rust-lang-owner is needed because team owners cannot add new owners.

Drawbacks

  • Adds additional maintenance burden to rustdoc team.
  • One-time maintenance burden to infra team to support move.

Rationale and alternatives

  • We could keep rustdoc-types as a personal project. This preserves the status quo (and is what will happen if this RFC (or something similar) isn’t adopted). This is undesirable because - Bus factor: If I am unable or unwilling to maintain rustdoc-types, we cause a load of unnecessary churn when it becomes out of sync with the in-tree rustdoc-json-types
  • We could bundle rustdoc-types through rustup. This is undesirable as it means users can’t depend on it in stable rust, and can’t depend on multiple versions.
  • We could publish rustdoc-json-types directly from rust-lang/rust. However
    • rust-lang/rust doesn’t currently publish to crates.io.

    • rustdoc-json-types doesn’t currently bump the version field in Cargo.toml

    • It may be desirable to one day use different types for rustdoc serialization vs users deserialization

      Reasons for this:

      • It could enable performance optimizations by avoiding allocations into strings
      • It could help with stabilization:
        • Allows making structs/enums #[non_exhaustive]
        • Allows potentially supporting multiple format versions.
    • rustdoc-types is a nicer name, and what people already depend on.

Prior art

Unresolved questions

None yet

Future possibilities

When the rustdoc-json feature is stabilized, we should release 1.0.0 to crates.io. How we can evolve the format post stabilization is an unanswered question. It’s a blocker for stabilization, but not this RFC.