forked from akanyan/STARTLINER
45 lines
1.2 KiB
TOML
45 lines
1.2 KiB
TOML
[package]
|
|
name = "startliner"
|
|
version = "0.1.0"
|
|
description = "A Tauri App"
|
|
authors = ["akanyan"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "startliner_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = ["protocol-asset"] }
|
|
tauri-plugin-opener = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
serde_json5 = "0.1.0"
|
|
serde_derive = "1.0.217"
|
|
reqwest = { version = "0.12.12", features = ["stream"] }
|
|
derive_builder = "0.20.2"
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread", "full"] }
|
|
flate2 = "1.0.35"
|
|
async-compression = { version = "0.4.18", features = ["gzip", "futures-io", "tokio"] }
|
|
futures = "0.3.31"
|
|
tauri-plugin-shell = "2"
|
|
directories = "6.0.0"
|
|
rust-ini = "0.21.1"
|
|
simple_logger = "5.0.0"
|
|
log = "0.4.25"
|
|
regex = "1.11.1"
|
|
zip = "2.2.2"
|
|
tauri-plugin-dialog = "2"
|
|
anyhow = "1.0.95"
|
|
tauri-plugin-deep-link = "2"
|
|
async-std = "1.13.0"
|
|
closure = "0.3.0"
|
|
derive_more = { version = "2.0.1", features = ["display"] }
|
|
|
|
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies]
|
|
tauri-plugin-single-instance = { version = "2", features = ["deep-link"] }
|
|
|