mirror of
https://github.com/kennethreitz/kjvstudy.org.git
synced 2026-06-05 14:50:17 +00:00
ba71e55bca
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>
25 lines
672 B
TOML
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"]
|