36 lines
904 B
TOML
36 lines
904 B
TOML
[lib]
|
|
name = "template_lib"
|
|
resolver = "2"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[package]
|
|
name = "template"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
categories.workspace = true
|
|
edition.workspace = true
|
|
keywords.workspace = true
|
|
license.workspace = true
|
|
readme.workspace = true
|
|
repository.workspace = true
|
|
description.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
either_of = "0.1.5"
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tauri.workspace = true
|
|
|
|
[build-dependencies]
|
|
tauri-build.workspace = true
|
|
|
|
[features]
|
|
# 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.
|
|
# DO NOT REMOVE!!
|
|
default = ["custom-protocol"]
|
|
custom-protocol = ["tauri/custom-protocol"]
|