tauri-app/src-tauri/Cargo.toml

37 lines
952 B
TOML
Raw Normal View History

2024-01-14 14:26:14 +00:00
[package]
name = "tauri-app"
version = "0.0.0"
description = "A Tauri App"
authors = ["you"]
license = ""
repository = ""
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
tauri-build = { version = "1.5", features = [] }
[dependencies]
2024-02-11 17:12:40 +00:00
tauri = { version = "1.5", features = [
"macos-private-api",
"window-minimize",
"window-maximize",
"window-hide",
"window-unminimize",
"window-unmaximize",
"window-start-dragging",
"window-close",
"window-show",
"shell-open",
] }
2024-01-14 22:16:45 +00:00
tauri-plugin-window-state = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" }
2024-01-14 14:26:14 +00:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2024-01-14 22:16:45 +00:00
window-shadows = "0.2"
2024-01-14 14:26:14 +00:00
[features]
# this feature is used for production builds or when `devPath` points to the filesystem
# DO NOT REMOVE!!
custom-protocol = ["tauri/custom-protocol"]