This crate contains the type definitions for rustdoc's currently-unstable
--output-format=json
flag. They can be deserialized with serde-json
from
the output of cargo +nightly rustdoc -- --output-format json -Z unstable-options
:
let json_string = std::fs::read_to_string("./target/doc/rustdoc_types.json")?;
let krate: rustdoc_types::Crate = serde_json::from_str(&json_string)?;
println!("the index has {} items", krate.index.len());
This repo is a reexport of
rustdoc-json-types
from the rust repo. Any change to the contents of src/
, should be sent
to rust-lang/rust
, via their normal
contibution
procudures. Once
reviewed and merged there, the change will be pulled to this repo and published
to crates.io.
- Run
./update.sh
to pull code from upstream - Run
cargo test
- Run
./clgen.sh <old_version> <new_version>
- Follow printed instructions to commit and push.
Licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.