- 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
23 lines
577 B
TOML
23 lines
577 B
TOML
[package]
|
|
name = "bevy-tasks-cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "CLI frontend for Bevy Tasks, a local-first task management app"
|
|
license = "GPL-3.0-or-later"
|
|
repository = "https://github.com/SteelDynamite/bevy-tasks"
|
|
|
|
[[bin]]
|
|
name = "bevy-tasks"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
bevy-tasks-core = { path = "../bevy-tasks-core" }
|
|
clap = { version = "4.5", features = ["derive", "env"] }
|
|
colored = "2.0"
|
|
anyhow = { workspace = true }
|
|
chrono = { workspace = true }
|
|
uuid = { workspace = true }
|
|
fs_extra = "1.3"
|
|
tokio = { workspace = true }
|
|
rpassword = "5.0"
|