To make Rust consistent with other FIDL bindings (fxbug.dev/102954), I’m changing the GN target labels to end in “_rust” instead of “-rustc”. For example, instead of
//sdk/fidl/fuchsia.net:fuchsia.net-rustc
You would use
//sdk/fidl/fuchsia.net:fuchsia.net_rust
Here is the timeline:
Right now: only “-rustc” works.
Once fxrev.dev/705243 lands: both “-rustc” and “_rust” work.
Once fxrev.dev/705264 lands: only “_rust” works.
Mitchell