Files
kjvstudy.org/src-tauri/Cargo.toml
T
kennethreitz ba71e55bca Add loading screen, native menu bar, and About dialog
Features:
- Loading screen with spinner while FastAPI server starts
- Full native macOS menu bar with:
  - Navigate menu: Home, Books, Search, Verse of the Day, Random
  - Study menu: Study Guides, Topics, Stories, Strong's, Interlinear, Reading Plans
  - View menu: Back, Forward, Reload, Fullscreen
  - Standard Edit, Window, Help menus
- About dialog with version info and description
- Keyboard shortcuts for common navigation (Cmd+K search, etc.)
- Version updated to 0.1.0

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-15 13:59:25 -05:00

25 lines
672 B
TOML

[package]
name = "kjvstudy"
version = "0.1.0"
description = "KJV Study - Offline Bible Study App"
authors = ["Kenneth Reitz"]
license = "MIT"
repository = "https://github.com/kennethreitz/kjvstudy.org"
edition = "2021"
[build-dependencies]
tauri-build = { version = "2", features = [] }
[dependencies]
tauri = { version = "2", features = ["webview-data-url"] }
tauri-plugin-shell = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["process", "time"] }
reqwest = { version = "0.12", features = ["blocking"] }
urlencoding = "2"
[features]
default = ["custom-protocol"]
custom-protocol = ["tauri/custom-protocol"]