From d917722b00169284151bce208f0708bef02a82d9 Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Thu, 13 Nov 2025 05:25:46 -0300 Subject: [PATCH] feat: update botserver to v6.0.8 and refine desktop dependencies - Bump version from 6.0.7 to 6.0.8 in Cargo.toml and Cargo.lock - Refactor desktop feature to use explicit dependency syntax - Remove outdated open source tools list from README-6.md --- .cline/config.json | 3 --- .gitattributes | 3 --- Cargo.lock | 2 +- Cargo.toml | 5 ++--- README-6.md | 16 ---------------- gbot.cmd | 15 --------------- gbot.sh | 3 --- 7 files changed, 3 insertions(+), 44 deletions(-) delete mode 100644 .cline/config.json delete mode 100644 .gitattributes delete mode 100644 gbot.cmd delete mode 100755 gbot.sh diff --git a/.cline/config.json b/.cline/config.json deleted file mode 100644 index 7a06ce52..00000000 --- a/.cline/config.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "checkpoints": false -} diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index 240a8c3f..00000000 --- a/.gitattributes +++ /dev/null @@ -1,3 +0,0 @@ -* text=auto -*.js eol=lf -*.ts eol=lf diff --git a/Cargo.lock b/Cargo.lock index 25b0ac5c..adb2b62a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1327,7 +1327,7 @@ dependencies = [ [[package]] name = "botserver" -version = "6.0.7" +version = "6.0.8" dependencies = [ "actix-cors", "actix-multipart", diff --git a/Cargo.toml b/Cargo.toml index 255d5046..b4f58599 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "botserver" -version = "6.0.7" +version = "6.0.8" edition = "2021" authors = [ "Pragmatismo.com.br ", @@ -41,8 +41,7 @@ default = [] vectordb = ["qdrant-client"] email = ["imap"] -desktop = ["tauri"] -official = ["tauri"] +desktop = ["dep:tauri", "dep:tauri-plugin-dialog", "dep:tauri-plugin-opener"] [dependencies] diff --git a/README-6.md b/README-6.md index 6e13ce55..be41e3ed 100644 --- a/README-6.md +++ b/README-6.md @@ -285,22 +285,6 @@ Licensed under terms specified in workspace configuration. - Bi-annual disaster recovery testing -### **Key Open Source Tools in Rust/Go**: -1. **Zitadel (Go)**: Identity and access management for secure authentication. -2. **Stalwart (Rust)**: Secure email server for threat detection. -3. **MinIO (Go)**: High-performance object storage for unstructured data. -4. **Ubuntu Advantage (Go/Rust tools)**: Compliance and security tools for Ubuntu. -5. **Tantivy (Rust)**: Full-text search engine for data discovery. -6. **Drone (Go)**: CI/CD platform for DevOps automation. -7. **Temporal (Go)**: Workflow orchestration engine. -8. **Caddy (Go)**: Web server for seamless customer experiences. -9. **SeaweedFS (Go)**: Distributed file system for secure file sharing. -10. **Vector (Rust)**: Observability pipeline for monitoring. -11. **Tyk (Go)**: API gateway for secure API management. -12. **Vault (Go)**: Secrets management and encryption. -13. **Hugging Face Transformers (Rust/Go bindings)**: LLM integration and fine-tuning. -14. **Kubernetes (Go)**: Container orchestration for scalable deployments. -15. **Matrix (Rust)**: Real-time communication and collaboration. # API: diff --git a/gbot.cmd b/gbot.cmd deleted file mode 100644 index 5dac5910..00000000 --- a/gbot.cmd +++ /dev/null @@ -1,15 +0,0 @@ -@ECHO off - -ECHO General Bots Command Line - -IF EXIST node_modules goto COMPILE -ECHO Installing Packages for the first time use (it may take several minutes)... -CALL npm install --silent - -:COMPILE -IF EXIST dist goto ALLSET -ECHO Compiling... -npm run build - -:ALLSET -npm run start diff --git a/gbot.sh b/gbot.sh deleted file mode 100755 index 5e232670..00000000 --- a/gbot.sh +++ /dev/null @@ -1,3 +0,0 @@ -set +e -clear && \ - RUST_LOG=trace,hyper_util=off cargo run