2024-05-25 10:04:05 +00:00
|
|
|
[package]
|
|
|
|
name = "panorama"
|
2024-06-02 21:37:36 +00:00
|
|
|
version = "0.1.0"
|
2024-05-25 10:04:05 +00:00
|
|
|
description = "A Tauri App"
|
|
|
|
authors = ["you"]
|
|
|
|
edition = "2021"
|
|
|
|
|
2024-06-02 21:37:36 +00:00
|
|
|
[lib]
|
|
|
|
name = "app_lib"
|
|
|
|
crate-type = [
|
|
|
|
"staticlib",
|
|
|
|
"cdylib",
|
|
|
|
# "rlib",
|
|
|
|
"lib",
|
|
|
|
]
|
2024-05-25 10:04:05 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2024-06-02 21:37:36 +00:00
|
|
|
tauri-build = { version = "2.0.0-beta", features = [] }
|
2024-05-25 10:04:05 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-06-02 21:37:36 +00:00
|
|
|
tauri = { version = "2.0.0-beta", features = [] }
|
2024-05-25 10:04:05 +00:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
serde_json = "1"
|
2024-06-02 21:37:36 +00:00
|
|
|
tauri-build = { version = "2.0.0-beta.17", features = ["config-toml"] }
|
|
|
|
tauri-plugin-http = "2.0.0-beta.9"
|
|
|
|
tauri-plugin-shell = "2.0.0-beta.7"
|
|
|
|
tauri-plugin-single-instance = "2.0.0-beta.9"
|
|
|
|
tauri-plugin-window-state = "2.0.0-beta"
|
2024-05-25 10:04:05 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
# This feature is used for production builds or when a dev server is not specified, DO NOT REMOVE!!
|
|
|
|
custom-protocol = ["tauri/custom-protocol"]
|