├── .github └── workflows │ └── CI.yml ├── .gitignore ├── CHANGELOG.md ├── COMMIT.txt ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── clgen.sh ├── examples └── simple_usage.rs ├── src ├── lib.rs └── tests.rs └── update.sh /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/rustdoc-types/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/rustdoc-types/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /COMMIT.txt: -------------------------------------------------------------------------------- 1 | 361af821ab169a98e9fc1db5d3a57978504ed379 2 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/rustdoc-types/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/rustdoc-types/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/rustdoc-types/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/rustdoc-types/HEAD/README.md -------------------------------------------------------------------------------- /clgen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/rustdoc-types/HEAD/clgen.sh -------------------------------------------------------------------------------- /examples/simple_usage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/rustdoc-types/HEAD/examples/simple_usage.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/rustdoc-types/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/rustdoc-types/HEAD/src/tests.rs -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/rustdoc-types/HEAD/update.sh --------------------------------------------------------------------------------