From c551fec1ce727e3a156d1290661b4ab0e414bb2b Mon Sep 17 00:00:00 2001 From: John Davies Date: Fri, 2 May 2025 00:35:50 +0700 Subject: [PATCH] Added [[bin]] section to Cargo.toml with test and bench set to false to prevent duplicate definition of lang item --- Cargo.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 77c97e23..6ab47a9a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,3 +11,8 @@ panic = "abort" [profile.release] panic = "abort" + +[[bin]] +name = "blog_os" +test = false +bench = false