26 lines
615 B
TOML
26 lines
615 B
TOML
[package]
|
|
name = "ti-pote-desktop"
|
|
version = "0.0.1"
|
|
description = "Ti-Pote desktop companion app"
|
|
authors = ["Arthur"]
|
|
edition = "2021"
|
|
rust-version = "1.77"
|
|
|
|
[lib]
|
|
name = "ti_pote_desktop_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = [] }
|
|
tauri-plugin-store = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
|
|
[features]
|
|
# This feature is used for production builds or when a dev server is not specified,
|
|
# DO NOT REMOVE!!
|
|
custom-protocol = ["tauri/custom-protocol"]
|