30 lines
723 B
TOML
30 lines
723 B
TOML
|
[package]
|
||
|
name = "panorama"
|
||
|
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
|
||
|
|
||
|
[lib]
|
||
|
name = "panorama_lib"
|
||
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
||
|
|
||
|
[build-dependencies]
|
||
|
tauri-build = { version = "2.0.0-alpha", features = [] }
|
||
|
|
||
|
[dependencies]
|
||
|
tauri = { version = "2.0.0-alpha", features = [] }
|
||
|
tauri-plugin-window = "2.0.0-alpha"
|
||
|
tauri-plugin-shell = "2.0.0-alpha"
|
||
|
serde_json = "1.0"
|
||
|
cozo = "0.7.5"
|
||
|
|
||
|
[features]
|
||
|
# this feature is used for production builds or when `devPath` points to the filesystem
|
||
|
# DO NOT REMOVE!!
|
||
|
custom-protocol = ["tauri/custom-protocol"]
|