cargo-docs-rs

Crates.iocargo-docs-rs
lib.rscargo-docs-rs
version0.1.12
sourcesrc
created_at2023-09-24 00:17:59.369744
updated_at2024-04-06 21:49:48.157908
descriptionImitate the documentation build that docs.rs would do
homepage
repositoryhttps://github.com/dtolnay/cargo-docs-rs
max_upload_size
id981619
size44,638
Lanthanum (github:zxtn:lanthanum)

documentation

README

cargo docs-rs

github crates.io build status

Run cargo rustdoc with the same options that would be used by docs.rs, taking into account the package.metadata.docs.rs configured in Cargo.toml.

Example

If the following GitHub Actions job succeeds, it's likely that docs.rs will succeed in building your crate's documentation.

# .github/workflows/ci.yml

name: test suite
on: [push, pull_request]

jobs:
  # ...

  doc:
    name: Documentation
    runs-on: ubuntu-latest
    env:
      RUSTDOCFLAGS: -Dwarnings
    steps:
      - uses: actions/checkout@v4
      - uses: dtolnay/rust-toolchain@nightly
      - uses: dtolnay/install@cargo-docs-rs
      - run: cargo docs-rs

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Commit count: 86

cargo fmt