mirror of
https://github.com/BTMuli/TeyvatGuide.git
synced 2025-12-06 08:32:51 +08:00
30 lines
837 B
TOML
30 lines
837 B
TOML
[package]
|
|
name = "tauri-genshin"
|
|
version = "0.1.4"
|
|
description = "A Tauri App"
|
|
authors = ["BTMuli<bt-muli@outlook.com>"]
|
|
license = "MIT"
|
|
repository = "https://github.com/BTMuli/Tauri.Genshin"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "1.2", features = [] }
|
|
|
|
[dependencies]
|
|
rocket = "0.5.0-rc.1"
|
|
tauri = { version = "1.2", features = ["api-all", "updater"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
|
|
[dependencies.tauri-plugin-sql]
|
|
git = "https://github.com/tauri-apps/plugins-workspace"
|
|
branch = "dev"
|
|
features = ["sqlite"]
|
|
|
|
[features]
|
|
# this feature is used for production builds or when `devPath` points to the filesystem
|
|
# DO NOT REMOVE!!
|
|
custom-protocol = ["tauri/custom-protocol"]
|