[package] name = "TeyvatGuide" version = "0.3.4" description = "Game Tool for Genshin Impact player" authors = ["BTMuli "] license = "MIT" repository = "https://github.com/BTMuli/TeyvatGuide" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [build-dependencies] tauri-build = { version = "1.4", features = [] } [dependencies] tauri = { version = "1.4", features = [ "process-exit", "fs-read-dir", "window-hide", "os-all", "clipboard-all", "dialog-open", "dialog-save", "fs-create-dir", "fs-remove-dir", "fs-write-file", "fs-remove-file", "fs-read-file", "path-all", "fs-exists", "window-close", "window-set-title", "window-unminimize", "window-show", "window-set-focus", "http-request", "shell-open"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" url = "2.4.1" tauri-utils = "1.5.0" walkdir = "2" # sqlite 插件 [dependencies.tauri-plugin-sql] git = "https://github.com/tauri-apps/plugins-workspace" branch = "v1" features = ["sqlite"] # deep link 插件 [dependencies.tauri-plugin-deep-link] version = "0.1.2" # 用于打包 [profile.release] codegen-units = 1 lto = true opt-level = "s" panic = "abort" [features] # this feature is used for production builds or when `devPath` points to the filesystem # DO NOT REMOVE!! custom-protocol = ["tauri/custom-protocol"]