Files
EasytierGame/src-tauri/Cargo.toml
T

36 lines
876 B
TOML

[package]
name = "easytier-game"
version = "1.0.3"
description = "A simple network initiator based on Easytier"
authors = ["you"]
license = ""
repository = ""
edition = "2021"
rust-version = "1.77.2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "app_lib"
crate-type = ["staticlib", "cdylib", "rlib"]
[build-dependencies]
tauri-build = { version = "2.0.1", features = [] }
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
log = "0.4"
tauri = { version = "2.0.2", features = [
"tray-icon",
"image-png",
"image-ico",
] }
tauri-plugin-log = "2.0.0-rc"
tauri-plugin-shell = "2"
reqwest = { version = "0.12", features = ["json"] }
zip = "2.2.0"
[target."cfg(not(any(target_os = \"android\", target_os = \"ios\")))".dependencies]
tauri-plugin-single-instance = "2"