mirror of
https://github.com/bevyengine/bevy
synced 2024-11-13 00:17:27 +00:00
71c5f1e3e4
# Objective - Fix issue #2611 ## Solution - Add `--generate-link-to-definition` to all the `rustdoc-args` arrays in the `Cargo.toml`s (for docs.rs) - Add `--generate-link-to-definition` to the `RUSTDOCFLAGS` environment variable in the docs workflow (for dev-docs.bevyengine.org) - Document all the workspace crates in the docs workflow (needed because otherwise only the source code of the `bevy` package will be included, making the argument useless) - I think this also fixes #3662, since it fixes the bug on dev-docs.bevyengine.org, while on docs.rs it has been fixed for a while on their side. --- ## Changelog - The source code viewer on docs.rs now includes links to the definitions.
19 lines
424 B
TOML
19 lines
424 B
TOML
[package]
|
|
name = "example-showcase"
|
|
edition = "2021"
|
|
description = "Tool for running examples or generating a showcase page for the website."
|
|
publish = false
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[dependencies]
|
|
xshell = "0.2"
|
|
clap = { version = "4.0", features = ["derive"] }
|
|
ron = "0.8"
|
|
toml_edit = { version = "0.22.7", default-features = false, features = [
|
|
"parse",
|
|
] }
|
|
pbr = "1.1"
|
|
regex = "1.10.5"
|
|
|
|
[lints]
|
|
workspace = true
|