- 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
26 lines
720 B
TOML
26 lines
720 B
TOML
[package]
|
|
name = "bevy-tasks-core"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Core library for local-first task management with markdown storage and WebDAV sync"
|
|
license = "GPL-3.0-or-later"
|
|
repository = "https://github.com/SteelDynamite/bevy-tasks"
|
|
|
|
[dependencies]
|
|
serde = { workspace = true }
|
|
serde_json = "1.0"
|
|
serde_yaml = "0.9"
|
|
uuid = { workspace = true }
|
|
chrono = { workspace = true }
|
|
directories = "5.0"
|
|
reqwest = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
quick-xml = { workspace = true }
|
|
tokio = { workspace = true }
|
|
keyring = { version = "3", features = ["apple-native", "windows-native", "sync-secret-service"] }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.0"
|
|
wiremock = "0.6"
|
|
tokio = { workspace = true }
|