-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Configure
cargo
to pass additional flags to rustdoc
instead of us…
…ing a script.
- Loading branch information
1 parent
1cc2a30
commit 89f850f
Showing
2 changed files
with
8 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[build] | ||
rustdocflags = [ | ||
# TODO: This fails due to a bad interaction with workspaces. `cargo doc` | ||
# from the repository root executes `rustdoc` at the root, but | ||
# `cargo test --doc` executes `rustdoc` within each package, which | ||
# breaks this path. | ||
"--html-in-header=./doc/katex-header.html" | ||
] |
This file was deleted.
Oops, something went wrong.
89f850f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See this issue.