- Add GPL-3.0 LICENSE file - Update README with current project status (all 3 phases), fix structure - Update PLAN.md Phase 2 API signatures to match actual implementation - Add WebDAV & Sync section to docs/API.md - Update docs/DEVELOPMENT.md with Tauri app structure and setup - Add metadata (description, license, repository) to all Cargo.toml files - Update .gitignore with node_modules, .env, dist, build entries - Remove stale Cargo.lock from .gitignore (apps should track it) - Update example dates from 2025 to 2026 across all docs - Update CLAUDE.md date to 2026-03-30
31 lines
829 B
TOML
31 lines
829 B
TOML
[package]
|
|
name = "bevy-tasks-tauri"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Tauri v2 desktop GUI for Bevy Tasks"
|
|
license = "GPL-3.0-or-later"
|
|
repository = "https://github.com/SteelDynamite/bevy-tasks"
|
|
|
|
[lib]
|
|
name = "bevy_tasks_tauri_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = [] }
|
|
tauri-plugin-dialog = "2"
|
|
tauri-plugin-os = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
bevy-tasks-core = { path = "../../../crates/bevy-tasks-core" }
|
|
tokio = { version = "1", features = ["full"] }
|
|
uuid = { version = "1", features = ["serde", "v4"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
[package.metadata.tauri]
|
|
|
|
[features]
|
|
custom-protocol = ["tauri/custom-protocol"]
|