-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3076e25
commit 67b78a0
Showing
6 changed files
with
24 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Rustdoc JSON Types | ||
|
||
This crate exposes the Rustdoc JSON API as a set of types with serde implementations. | ||
These types are part of the public interface of the rustdoc JSON output, and making them | ||
their own crate allows them to be versioned and distributed without having to depend on | ||
any rustc/rustdoc internals. This way, consumers can rely on this crate for both documentation | ||
of the output, and as a way to read the output easily, and its versioning is intended to | ||
follow semver guarantees about the version of the format. JSON format X will always be | ||
compatible with rustdoc-json-types version N. | ||
|
||
Currently, this crate is only used by rustdoc itself. Upon the stabilization of | ||
rustdoc-json, it may be start to be distributed separately for consumers of the API. |