Skip to content

Commit 39a22fe

Browse files
authored
remove mention of cc_deps from warning message (#4099)
A follow-up from #4024 where we inadvertently mentioned a feature that doesn't exist.
1 parent 3a95857 commit 39a22fe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

rust/private/rust.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def _assert_correct_dep_mapping(ctx):
103103
print(
104104
("\nWARNING: Target {dep} in 'deps' of {target} is a C++ library. " +
105105
"Only Rust targets are allowed in 'deps'. " +
106-
"Please use 'link_deps' for manual FFI linkage or 'cc_deps' for binding generation. " +
106+
"Please use 'link_deps' for manual FFI linkage. " +
107107
"Support for C++ libraries in 'deps' is deprecated and will be removed in a future release.").format(
108108
dep = dep.label,
109109
target = ctx.label,

0 commit comments

Comments
 (0)