-
Notifications
You must be signed in to change notification settings - Fork 446
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This allows targets to have special names that do not match their sources while still ensuring a root is found. I've encountered this when creating macros where I have a Rust target that is a side-effect and not the named target itself. E.g. ```starlark load("@rules_rust//rust:defs.bzl", "rust_binary") load("//control/private:control.bzl", _control_binary = "control_binary") def control_binary( name, # ... **kwargs): rust_binary( name = name + "_bin", # ... **kwargs ) _control_binary( name = name, bin = name + "_bin", # ... **kwargs ) ``` Being able to specify `crate_name` will both ensure the binary is compiled with a cleaner name for the runtime and be able to do the nominal `crate_root` matching. The diff after this PR achieves the desired behavior. ```diff --- before/defs.bzl 2024-08-31 12:41:24 +++ after/defs.bzl 2024-08-31 12:42:09 @@ -8,6 +8,7 @@ rust_binary( name = name + "_bin", + crate_name = name, # ... **kwargs ) ```
- Loading branch information
1 parent
ef8ac18
commit 73b1594
Showing
6 changed files
with
58 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
fn main() {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
//! https://doc.rust-lang.org/rust-by-example/testing/unit_testing.html | ||
pub fn add(a: i32, b: i32) -> i32 { | ||
a + b | ||
} | ||
|
||
#[cfg(test)] | ||
mod tests { | ||
// Note this useful idiom: importing names from outer (for mod tests) scope. | ||
use super::*; | ||
|
||
#[test] | ||
fn test_add() { | ||
assert_eq!(add(1, 2), 3); | ||
} | ||
} |