2019-07-14 15:47:29 +03:00
|
|
|
[package]
|
|
|
|
name = "app"
|
|
|
|
version = "0.1.0"
|
2019-10-07 21:36:56 +03:00
|
|
|
description = "A Tauri App"
|
2020-03-01 17:08:32 +03:00
|
|
|
authors = ["you"]
|
2019-07-21 00:42:07 +03:00
|
|
|
license = ""
|
|
|
|
repository = ""
|
2021-10-22 16:04:42 +03:00
|
|
|
edition = "2021"
|
2023-05-06 23:16:52 +03:00
|
|
|
rust-version = "1.65"
|
2019-07-14 15:47:29 +03:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2022-08-25 22:43:29 +03:00
|
|
|
[lib]
|
2023-01-06 20:31:48 +03:00
|
|
|
name = "app_lib"
|
2022-08-25 22:43:29 +03:00
|
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
|
2021-03-13 04:10:19 +03:00
|
|
|
[build-dependencies]
|
2021-03-25 01:21:03 +03:00
|
|
|
tauri-build = {{{ tauri_build_dep }}}
|
2021-03-13 04:10:19 +03:00
|
|
|
|
2019-07-14 15:47:29 +03:00
|
|
|
[dependencies]
|
2020-02-06 04:18:20 +03:00
|
|
|
serde_json = "1.0"
|
2020-02-08 19:08:54 +03:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2021-03-25 01:21:03 +03:00
|
|
|
tauri = {{{ tauri_dep }}}
|
2019-07-14 15:47:29 +03:00
|
|
|
|
|
|
|
[features]
|
2023-01-17 03:43:29 +03:00
|
|
|
# this feature is used for production builds or when `devPath` points to the filesystem and the built-in dev server is disabled.
|
|
|
|
# If you use cargo directly instead of tauri's cli you can use this feature flag to switch between tauri's `dev` and `build` modes.
|
2023-02-18 22:23:09 +03:00
|
|
|
# DO NOT REMOVE!!
|
2021-02-26 04:07:30 +03:00
|
|
|
custom-protocol = [ "tauri/custom-protocol" ]
|