依赖于 Crate

添加第三方 crate 并生成构建规则后,就可轻松使用该 crate。请找到 rust_static_library 目标,并在 crate 中的 :lib 目标上添加 dep

Specifically,

46.6. 依赖于 Crate - 图1

例如:

  1. rust_static_library("my_rust_lib") {
  2. crate_root = "lib.rs"
  3. sources = [ "lib.rs" ]
  4. deps = [ "//third_party/rust/example_rust_crate/v1:lib" ]
  5. }