From 447a062916565b818f7ef409a72a9971b83b4f20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Jos=C3=A9=20Pereira?= Date: Sun, 27 Oct 2024 09:38:44 +0900 Subject: [PATCH] build: Move build file to root folder MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This avoid rebuilding the build script, it appears that can only work in the root dir Signed-off-by: Patrick José Pereira --- Cargo.toml | 2 +- src/build.rs => build.rs | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/build.rs => build.rs (100%) diff --git a/Cargo.toml b/Cargo.toml index f6cdf032..6730d6e7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "mavlink-server" version = "0.1.0" edition = "2021" authors = ["João Antônio Cardoso ", "Patrick José Pereira "] -build = "src/build.rs" +build = "build.rs" [lib] name = "mavlink_server" diff --git a/src/build.rs b/build.rs similarity index 100% rename from src/build.rs rename to build.rs