[package] name = "panorama" version = "0.1.0" description = "A Tauri App" authors = ["you"] edition = "2021" [lib] name = "app_lib" crate-type = [ "staticlib", "cdylib", # "rlib", "lib", ] [build-dependencies] tauri-build = { version = "2.0.0-beta", features = [] } [dependencies] clap = { version = "4.5.7", features = ["derive"] } panorama-daemon = { path = "../../crates/panorama-daemon" } serde = { version = "1", features = ["derive"] } serde_json = "1" tauri = { version = "2.0.0-beta", features = [] } 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" tokio = { version = "1.38.0", features = ["full"] } [features] # This feature is used for production builds or when a dev server is not specified, DO NOT REMOVE!! custom-protocol = ["tauri/custom-protocol"]