From 32585a4d3d7a17edea772e31577a3ba1cc3e0c4f Mon Sep 17 00:00:00 2001 From: Liam <33645555+lj3954@users.noreply.github.com> Date: Thu, 5 Sep 2024 19:26:31 -0700 Subject: [PATCH] refactor: Use include rather than a build script to include tab changes Co-authored-by: cartercanedy <99052281+cartercanedy@users.noreply.github.com> --- core/Cargo.toml | 2 ++ core/build.rs | 4 ---- 2 files changed, 2 insertions(+), 4 deletions(-) delete mode 100644 core/build.rs diff --git a/core/Cargo.toml b/core/Cargo.toml index ebe1091df..480251d55 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -4,6 +4,8 @@ edition = "2021" version.workspace = true license.workspace = true +include = ["../tabs"] + [dependencies] include_dir = "0.7.4" tempdir = "0.3.7" diff --git a/core/build.rs b/core/build.rs deleted file mode 100644 index cd1f3a1b8..000000000 --- a/core/build.rs +++ /dev/null @@ -1,4 +0,0 @@ -fn main() { - // Rebuild if any tabs are modified - println!("cargo:rerun-if-changed=../tabs"); -}