From 6d75421bc072ce675f5f963079e73fbb9e1da625 Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Sun, 21 Dec 2025 23:40:40 -0300 Subject: [PATCH] Update botdevice --- Cargo.toml | 20 ++++++++++++++++++++ build.rs | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b783987..89eda0e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,6 +4,9 @@ version = "1.0.0" edition = "2021" description = "BotDevice - Android, HarmonyOS & IoT powered by General Bots" license = "AGPL-3.0" +repository = "https://github.com/GeneralBots/BotServer" +keywords = ["bot", "mobile", "android", "iot", "tauri"] +categories = ["gui", "embedded"] [lib] name = "botdevice_lib" @@ -37,3 +40,20 @@ tauri-build = { version = "2", features = ["codegen"] } [features] default = ["custom-protocol"] custom-protocol = ["tauri/custom-protocol"] + +[lints.rust] +unused_imports = "warn" +unused_variables = "warn" +unused_mut = "warn" +unsafe_code = "deny" +missing_debug_implementations = "warn" + +[lints.clippy] +all = "warn" +pedantic = "warn" +nursery = "warn" +cargo = "warn" +unwrap_used = "warn" +expect_used = "warn" +panic = "warn" +todo = "warn" diff --git a/build.rs b/build.rs index d860e1e..261851f 100644 --- a/build.rs +++ b/build.rs @@ -1,3 +1,3 @@ fn main() { - tauri_build::build() + tauri_build::build(); }