FCLauncher/FCLauncher.old/src-tauri/Cargo.toml

40 lines
1.1 KiB
TOML
Raw Normal View History

2024-06-22 17:17:07 -06:00
[package]
name = "fclauncher"
2024-06-27 17:44:58 -06:00
version = "0.0.5"
2024-06-27 16:59:43 -06:00
description = "Launcher for Familycraft"
authors = ["Samuel Walker", "Benjamin Walker"]
2024-06-22 17:17:07 -06:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
2024-10-23 22:24:50 -06:00
tauri-build = { version = "2", features = [] }
2024-06-22 17:17:07 -06:00
[dependencies]
2024-10-23 22:24:50 -06:00
tauri = { version = "2", features = [] }
2024-06-22 17:17:07 -06:00
serde = { version = "1", features = ["derive"] }
serde_json = "1"
2024-06-22 17:52:25 -06:00
suppaftp = { version = "6.0.1", features = ["native-tls"] }
tar = "0.4.41"
flate2 = "1.0.30"
zip-extract = "0.1.3"
dirs = "5.0.1"
gethostname = "0.4.3"
2024-06-27 16:53:21 -06:00
self_update = "0.40.0"
2024-07-12 21:11:52 -06:00
parking_lot = "0.12.3"
2024-07-13 09:37:19 -06:00
reqwest = { version = "0.12.5", features = ["stream"] }
futures-util = "0.3.30"
ssh2 = "0.9.4"
chrono = "0.4.38"
2024-07-14 08:44:16 -06:00
zip = "2.1.3"
2024-10-23 22:24:50 -06:00
tauri-plugin-dialog = "2"
tauri-plugin-shell = "2"
tauri-plugin-process = "2"
2024-06-22 17:17:07 -06:00
[features]
# This feature is used for production builds or when a dev server is not specified, DO NOT REMOVE!!
custom-protocol = ["tauri/custom-protocol"]
2024-10-23 22:24:50 -06:00
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies]
tauri-plugin-updater = "2"