1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-03-31 01:38:16 +02:00
2022-12-21 16:38:28 +01:00

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"],
}