mirror of
https://github.com/google/comprehensive-rust.git
synced 2025-03-31 01:38:16 +02:00
17 lines
307 B
Plaintext
17 lines
307 B
Plaintext
rust_binary {
|
|
name: "hello_rust_with_dep",
|
|
crate_name: "hello_rust_with_dep",
|
|
srcs: ["src/main.rs"],
|
|
rustlibs: [
|
|
"libgreetings",
|
|
"libtextwrap",
|
|
],
|
|
prefer_rlib: true,
|
|
}
|
|
|
|
rust_library {
|
|
name: "libgreetings",
|
|
crate_name: "greetings",
|
|
srcs: ["src/lib.rs"],
|
|
}
|