mirror of
https://github.com/LCE-Hub/LCE-Emerald-Launcher.git
synced 2026-07-15 23:10:48 +00:00
44 lines
1.2 KiB
TOML
44 lines
1.2 KiB
TOML
[package]
|
|
name = "emerald-legacy-launcher"
|
|
version = "1.3.0"
|
|
description = "A FOSS, cross-platform launcher for Minecraft Legacy Edition"
|
|
authors = ["Emerald Team"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "emerald_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = [ "tray-icon", "image-png"] }
|
|
tauri-plugin-opener = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tauri-plugin-gamepad = "0.0.5"
|
|
tauri-plugin-drpc = "*"
|
|
reqwest = { version = "0.11", features = ["stream", "json"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
futures-util = "0.3"
|
|
tokio-util = { version = "0.7.18", features = ["rt"] }
|
|
base64 = "0.21"
|
|
tokio-tungstenite = { version = "0.21", default-features = false, features = ["connect", "native-tls"] }
|
|
url = "2"
|
|
rand = "0.8"
|
|
http = "1"
|
|
rfd = "0.15"
|
|
libc = "0.2"
|
|
image = "0.24"
|
|
steam_shortcuts_util = "1.1.8"
|
|
tauri-plugin-process = "2"
|
|
byteorder = "1"
|
|
flate2 = "1"
|
|
once_cell = "1"
|
|
lzxd = "0.2.6"
|
|
uuid = { version = "1", features = ["v4"] }
|
|
|
|
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies]
|
|
tauri-plugin-updater = "2"
|