From c9912d5bff1c443bfef40425b508cb6894fc252c Mon Sep 17 00:00:00 2001 From: Waveplate Date: Tue, 1 Oct 2024 12:57:39 -0700 Subject: [PATCH] explicitly specify target name --- Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 0fb16cb..02ff162 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,6 +18,10 @@ strip = true # Automatically strip symbols from the binary. [target.x86_64-unknown-linux-musl] linker = "musl-gcc" +[[bin]] +name = "img2irc" +path = "src/main.rs" + [dependencies] tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros"] } reqwest = "0.11.14"