5

可以使用以下命令为 crate 设置favicon和rustdoc的徽标:

  • #![doc(html_favicon_url = "<url_to>/favicon.ico")]
  • #![doc(html_logo_url = "<url_to>/logo.png")]

如此处所述

但是,我不想公开上传我的徽标,因此希望自动将这些文件包含在/target/doc其中并从那里引用它们。

目前,我已将各自的数据 url(base64 编码)放入这些字段中,它工作正常,但它极大地膨胀了设置这些属性的源文件。

我知道我可以在target/doc使用脚本生成文档后将图像复制到其中,然后使用相对 url 引用它们,但我想避免这种情况,这样我仍然可以使用cargo doc.

编辑

评论中关于设置using--output标志的建议也没有奏效,因为它导致. 除此之外,它不适合我,因为(至少据我所知)我只能在那里给出绝对路径,而我需要使用图像的相对路径的解决方案,因为我将这些图像存储在cargo 根目录的子目录,以便使用 git 等轻松转移到另一个系统。rustdocrustdocflags.cargo/config.tomlerror: Option 'output' given more than once

4

1 回答 1

1

感谢eggyal的最新评论,我终于想出了如何做到这一点:

在我的build.rs我将文件复制到target/doc/

fn main() {
    // Copy the images to the output when generating documentation
    println!("cargo:rerun-if-changed=assets/doc");
    std::fs::copy("assets/doc/logo.ico", "target/doc/logo.ico").expect("Failed to copy crate favicon when building documentation.");
    std::fs::copy("assets/doc/logo.png", "target/doc/logo.png").expect("Failed to copy crate logo when building documentation.");
}

然后我只需要确保在引用它们时使用绝对路径,如下所示:

#![doc(html_favicon_url = "/logo.ico")]
#![doc(html_logo_url = "/logo.png")]

一般来说,读取CARGO_TARGET_DIR环境变量而不是硬编码会更好target/doc,但这在构建脚本中尚不可用。

于 2021-05-26T12:10:56.587 回答