From 409f27253cae06e49857f2288f4b3c3bdac7ec96 Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Sat, 24 Aug 2024 17:54:23 -0500 Subject: [PATCH] rust-project: name the binary `buck2-rust-project` The name `rust-project` is glamorous but far too generic to be meaningful when talking about it, and it's not immediately clear what it's even referring to (imagine searching for it on Google). I think `buck2-rust-project` is *much* better and also gives a template for follow up tools like e.g. `buck2-cxx- project` Signed-off-by: Austin Seipp --- integrations/rust-project/Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/integrations/rust-project/Cargo.toml b/integrations/rust-project/Cargo.toml index c720165cdef9d..b567e46753d8b 100644 --- a/integrations/rust-project/Cargo.toml +++ b/integrations/rust-project/Cargo.toml @@ -7,6 +7,10 @@ readme = "README.md" repository = { workspace = true } version = "0.0.0" +[[bin]] +name = "buck2-rust-project" +path = "src/main.rs" + [dependencies] anyhow = { workspace = true } clap = { workspace = true }