2023-11-06 15:03:40 +00:00
|
|
|
[package]
|
|
|
|
name = "{{ .Data.shortName }}"
|
|
|
|
version = "{{ .Data.version }}"
|
|
|
|
description = "{{ .Data.appName }}"
|
|
|
|
authors = ["Martyn's CI System"]
|
|
|
|
license = "BSD"
|
|
|
|
repository = "https://git.martyn.berlin/martyn/tauri-apps"
|
2023-11-07 16:23:06 +00:00
|
|
|
edition = "2021" # this is the rust edition, not edition of the tauri app!
|
2023-11-06 15:03:40 +00:00
|
|
|
|
|
|
|
# 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]
|
|
|
|
tauri = { version = "1.5", features = ["shell-open"] }
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
# this feature is used for production builds or when `devPath` points to the filesystem
|
|
|
|
# DO NOT REMOVE!!
|
|
|
|
custom-protocol = ["tauri/custom-protocol"]
|