如何防止 `rust doc` 将依赖项添加到文档中?

问题描述 投票:0回答:3

我刚刚开始使用 Rust,并尝试为我编写的代码生成文档。当我发出

cargo doc
时,我看到了一些奇怪的东西。

21:53 $ cargo doc
   Compiling regex-syntax v0.2.2
   Compiling libc v0.2.2
   Compiling memchr v0.1.7
   Compiling aho-corasick v0.3.4
   Compiling regex v0.1.41
   Compiling my_project v0.0.1 (path/to/my_project)

当我打开

my_project/target/doc/my_project/index.html
时,我注意到所有依赖项都包含在我的文档中:

Those damn crates

我希望这些依赖项的文档对用户隐藏,这样我的文档仅显示如何使用我的代码。

我该怎么做?

货物锁

[root]
name = "my_project"
version = "0.0.1"
dependencies = [
 "regex 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "aho-corasick"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "memchr 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "libc"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "memchr"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "libc 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "regex"
version = "0.1.41"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "aho-corasick 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
 "memchr 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
 "regex-syntax 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "regex-syntax"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
rust rust-cargo rustdoc
3个回答
55
投票

我找到了答案:

cargo doc --no-deps


5
投票

默认情况下,

cargo doc
构建本地包和所有依赖项的文档。输出以 rustdoc 的常用格式放置在 target/doc 中。

为了避免构建依赖项的文档,请传递

--no-deps

通常,我也倾向于通过

--open
。构建后,这将在浏览器中打开文档。

cargo doc --no-deps --open

在这里可以找到有关如何构建包文档的更多详细信息。


简单的例子。考虑以下

lib.rs
文件

//! This is my module documentation. My library is so nice!

/// four() is a function that returns `4`
///
/// ````
/// use mylib::four;
/// let x = four();
/// assert_eq!(four(), 4);
/// ````
pub fn four() -> i32 { 4 }

#[cfg(test)]
mod tests {
    use super::four;
    #[test]
    fn it_works() {
        assert_eq!(four(), 4);
    }
}

当一个人跑步时

cargo doc --no-deps --open

浏览器打开后显示以下内容:

Example of documentation


0
投票

我正在使用 Rust 1.79。对我来说,将文档生成到工作空间中的一个箱子中,最有效的是:

cargo doc --no-deps --package my_package

但是,有一个警告:如果您不为所有 crate 生成文档,则

source
链接将不会显示 – 也就是说,只有当您将所有 crate 包含在文档中时,源代码才会在文档中可见。文档。

© www.soinside.com 2019 - 2024. All rights reserved.