- LICENSE 附录版权行由模板占位符改为 Copyright 2023-present vnt-dev - 各 Cargo.toml 与 package.json 补充 license = Apache-2.0
30 lines
741 B
TOML
30 lines
741 B
TOML
[package]
|
|
name = "vnt-desktop"
|
|
version = "2.0.2"
|
|
description = "VNT virtual network desktop client"
|
|
edition = "2024"
|
|
license = "Apache-2.0"
|
|
|
|
[lib]
|
|
name = "vnt_desktop_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.6.3", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2.11.5", features = ["tray-icon"] }
|
|
tauri-plugin-single-instance = "2.4.3"
|
|
tauri-plugin-opener = "2"
|
|
vnt-web = { path = "../../vnt-web" }
|
|
vnt2 = { path = "../.." }
|
|
log.workspace = true
|
|
tokio = { workspace = true, features = ["full"] }
|
|
tokio-util.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
toml.workspace = true
|
|
anyhow.workspace = true
|
|
tauri-plugin-updater = "2"
|
|
tauri-plugin-process = "2"
|