stan44 8fd8451e1d - Added comprehensive README for Journal.DevTool detailing features and v0.1-v1.0 roadmap
- Created sdt-workspace.json at repo root to enable workspace project switching
- Cleaned up boilerplate Tauri template strings in Cargo.toml and tauri.conf.json (titles, identifiers, author name)
2026-02-27 13:18:38 -06:00

26 lines
799 B
TOML

[package]
name = "journalapp"
version = "0.1.0"
description = "A Tauri App"
authors = ["Stan"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
# The `_lib` suffix may seem redundant but it is necessary
# to make the lib name unique and wouldn't conflict with the bin name.
# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
name = "journalapp_lib"
crate-type = ["staticlib", "cdylib", "rlib"]
[build-dependencies]
tauri-build = { version = "2", features = [] }
[dependencies]
tauri = { version = "2", features = [] }
tauri-plugin-opener = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["process", "io-util", "sync"] }