addmon/apps/web/src-tauri/Cargo.toml
Syahdan 5929358754 refactor: move monitor page to index route and configure Tauri window
- Move monitor page content from /monitor to / (index route)
- Create placeholder monitor_.tsx route
- Remove Header component from root layout
- Configure Tauri window with transparent titlebar and dark background
- Enable macOS private API for window styling
2025-12-29 07:36:13 +07:00

28 lines
646 B
TOML

[package]
name = "app"
version = "0.1.0"
description = "A Tauri App"
authors = ["you"]
license = ""
repository = ""
edition = "2021"
rust-version = "1.77.2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "app_lib"
crate-type = ["staticlib", "cdylib", "rlib"]
[build-dependencies]
tauri-build = { version = "2.5.3", features = [] }
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
log = "0.4"
tauri = { version = "2.9.5", features = ["macos-private-api"] }
tauri-plugin-log = "2"
tauri-plugin-fs = "2"
tauri-plugin-dialog = "2"
thiserror = "1"