依赖于 Crate
添加第三方 crate 并生成构建规则后,就可轻松使用该 crate。请找到 rust_static_library
目标,并在 crate 中的 :lib
目标上添加 dep
。
Specifically,
例如:
rust_static_library("my_rust_lib") {
crate_root = "lib.rs"
sources = [ "lib.rs" ]
deps = [ "//third_party/rust/example_rust_crate/v1:lib" ]
}