generalbots/botdevice/Cargo.toml
Rodrigo Rodriguez (Pragmatismo) 037db5c381 feat: Major workspace reorganization and documentation update
- Add comprehensive documentation in botbook/ with 12 chapters
- Add botapp/ Tauri desktop application
- Add botdevice/ IoT device support
- Add botlib/ shared library crate
- Add botmodels/ Python ML models service
- Add botplugin/ browser extension
- Add botserver/ reorganized server code
- Add bottemplates/ bot templates
- Add bottest/ integration tests
- Add botui/ web UI server
- Add CI/CD workflows in .forgejo/workflows/
- Add AGENTS.md and PROD.md documentation
- Add dependency management scripts (DEPENDENCIES.sh/ps1)
- Remove legacy src/ structure and migrations
- Clean up temporary and backup files
2026-04-19 08:14:25 -03:00

39 lines
1 KiB
TOML

[package]
name = "botdevice"
version = "6.3.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"
crate-type = ["staticlib", "cdylib", "rlib"]
[dependencies]
# Tauri with mobile features
tauri = { workspace = true }
tauri-plugin-dialog = { workspace = true }
tauri-plugin-opener = { workspace = true }
tauri-plugin-notification = { workspace = true }
tauri-plugin-http = { workspace = true }
tauri-plugin-geolocation = { workspace = true }
# Common
log = { workspace = true }
android_logger = { workspace = true }
env_logger = { workspace = true }
serde_json = { workspace = true }
reqwest = { workspace = true, features = ["json"] }
[build-dependencies]
tauri-build = { workspace = true, features = ["codegen"] }
[features]
default = ["custom-protocol"]
custom-protocol = ["tauri/custom-protocol"]
[lints]
workspace = true