Files
tauri-shell/Cargo.toml
imbytecat 9ac5bfe6e7 refactor: 清理未使用依赖与配置,精简项目结构
- 移除不必要的权限配置opener:default
- 移除不再使用的异步相关依赖项及其实现,精简项目依赖树。
- 移除未使用的 tauri-plugin-opener 依赖项
- 移除已弃用的 tauri_plugin_opener 插件初始化,保留 shell 插件初始化并注册全局状态
2026-01-16 23:46:46 +08:00

25 lines
765 B
TOML

[package]
name = "tauri-shell"
version = "0.1.0"
description = "A Tauri App"
authors = ["imbytecat"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
# The `_lib` suffix may seem redundant but it is necessary
# to make the lib name unique and wouldn't conflict with the bin name.
# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
name = "tauri_shell_lib"
crate-type = ["staticlib", "cdylib", "rlib"]
[build-dependencies]
tauri-build = { version = "2", features = [] }
[dependencies]
tauri = { version = "2", features = [] }
tauri-plugin-shell = "2"
serde = { version = "1", features = ["derive"] }
tokio = { version = "1", features = ["net"] }