From 70f3ef8be613a34dd42f89ffe5f8d94304b72a05 Mon Sep 17 00:00:00 2001 From: Eric Hodel Date: Fri, 6 Oct 2023 12:10:39 -0700 Subject: [PATCH] Fix CrateInfo::dependencies documentation --- build-info-common/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-info-common/src/lib.rs b/build-info-common/src/lib.rs index af88a6c..4aff19c 100644 --- a/build-info-common/src/lib.rs +++ b/build-info-common/src/lib.rs @@ -89,7 +89,7 @@ pub struct CrateInfo { pub available_features: Vec, /// Dependencies of this crate. - /// Will only be filled with data if `build-info-build` has the `dependencies` feature enabled. + /// Will only be filled with data if `collect_dependencies(true)` was called on `build_script()`. pub dependencies: Vec, }