2024-06-22 17:17:07 -06:00
|
|
|
[package]
|
|
|
|
name = "fclauncher"
|
|
|
|
version = "0.0.0"
|
|
|
|
description = "A Tauri App"
|
|
|
|
authors = ["you"]
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
tauri-build = { version = "1", features = [] }
|
|
|
|
|
|
|
|
[dependencies]
|
2024-06-23 15:29:35 -06:00
|
|
|
tauri = { version = "1", features = [ "dialog-ask", "shell-open"] }
|
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"] }
|
2024-06-22 20:30:23 -06:00
|
|
|
tar = "0.4.41"
|
|
|
|
flate2 = "1.0.30"
|
|
|
|
zip-extract = "0.1.3"
|
|
|
|
dirs = "5.0.1"
|
|
|
|
gethostname = "0.4.3"
|
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"]
|