Enable rustdoc-map nightly feature via .cargo/config.toml
… instead of using -Z on the command line.
This commit is contained in:
parent
9c32c57dbc
commit
20d00919f3
@ -49,4 +49,5 @@ rustflags = [
|
|||||||
# activate the target-applies-to-host feature.
|
# activate the target-applies-to-host feature.
|
||||||
# Required for `target-applies-to-host` at the top to take effect.
|
# Required for `target-applies-to-host` at the top to take effect.
|
||||||
[unstable]
|
[unstable]
|
||||||
|
rustdoc-map = true
|
||||||
target-applies-to-host = true
|
target-applies-to-host = true
|
||||||
|
@ -23,9 +23,8 @@ impl DocTask {
|
|||||||
// Keep in sync with .github/workflows/docs.yml
|
// Keep in sync with .github/workflows/docs.yml
|
||||||
let mut cmd = cmd!(
|
let mut cmd = cmd!(
|
||||||
"
|
"
|
||||||
rustup run nightly cargo doc --no-deps --workspace
|
rustup run nightly cargo doc --all-features --no-deps --workspace
|
||||||
--exclude ruma-macros --exclude ruma-identifiers-validation --exclude xtask
|
--exclude ruma-macros --exclude ruma-identifiers-validation --exclude xtask
|
||||||
--all-features -Zrustdoc-map
|
|
||||||
"
|
"
|
||||||
)
|
)
|
||||||
// Work around https://github.com/rust-lang/cargo/issues/10744
|
// Work around https://github.com/rust-lang/cargo/issues/10744
|
||||||
|
Loading…
x
Reference in New Issue
Block a user