mirror of
https://github.com/Novattz/creamlinux-installer.git
synced 2025-12-05 19:45:36 -05:00
43 lines
1.1 KiB
TOML
43 lines
1.1 KiB
TOML
[package]
|
|
name = "app"
|
|
version = "0.1.0"
|
|
description = "DLC Manager for Steam games on Linux"
|
|
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
|
|
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.2.0", features = [] }
|
|
|
|
[dependencies]
|
|
serde_json = { version = "1.0", features = ["raw_value"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
bincode = "1.3"
|
|
regex = "1"
|
|
xdg = "2"
|
|
log = "0.4"
|
|
log4rs = "1.2"
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
zip = "0.6"
|
|
tempfile = "3.8"
|
|
walkdir = "2.3"
|
|
parking_lot = "0.12"
|
|
tauri = { version = "2.5.0", features = [] }
|
|
tauri-plugin-log = "2.0.0-rc"
|
|
tauri-plugin-shell = "2.0.0-rc"
|
|
tauri-plugin-dialog = "2.0.0-rc"
|
|
tauri-plugin-fs = "2.0.0-rc"
|
|
num_cpus = "1.16.0"
|
|
futures = "0.3.31"
|
|
|
|
[features]
|
|
# this feature is used for production builds or when `devPath` points to the filesystem
|
|
# DO NOT REMOVE!!
|
|
custom-protocol = ["tauri/custom-protocol"]
|