4273b0ef90
Squashed commit of the following: commit 085cd9481dee748ee84c1a8f9dcd8ef0b01105ab Author: Aden Lindsay <140392385+AdenMGB@users.noreply.github.com> Date: Mon Dec 30 16:29:41 2024 +1030 Update lib.rs for the DB sync of autostart commit 86f2fb19bde3933ec6b5cd82701de0d306121659 Author: Aden Lindsay <140392385+AdenMGB@users.noreply.github.com> Date: Mon Dec 30 16:29:13 2024 +1030 Update db.rs to accomidate the settings sync commit ece11e7581c9aef55588b2e829379b1224021a45 Author: Aden Lindsay <140392385+AdenMGB@users.noreply.github.com> Date: Mon Dec 30 16:27:48 2024 +1030 Update autostart.rs to include DB commit 7ea8a24fdc2ff98379694ce8e347a40fcfd5fea3 Author: Aden Lindsay <140392385+AdenMGB@users.noreply.github.com> Date: Mon Dec 30 15:17:38 2024 +1030 Add files via upload commit af2f232d94fa449d9e20df737ce81ebded87fd50 Author: Aden Lindsay <140392385+AdenMGB@users.noreply.github.com> Date: Mon Dec 30 15:17:09 2024 +1030 Delete src-tauri/Cargo.toml commit 5d27b65612457de6eb30835d5423b9d96fd5a596 Author: Aden Lindsay <140392385+AdenMGB@users.noreply.github.com> Date: Mon Dec 30 15:15:42 2024 +1030 Add files via upload commit 2eea7b97a876e23cc0d6daec37f1b75af9bf3ae2 Author: Aden Lindsay <140392385+AdenMGB@users.noreply.github.com> Date: Mon Dec 30 15:15:31 2024 +1030 Delete src-tauri/src/lib.rs commit 9a635a10d1340f86c74812113284b115b34b9bbe Author: Aden Lindsay <140392385+AdenMGB@users.noreply.github.com> Date: Mon Dec 30 15:14:49 2024 +1030 Add files via upload commit 2fb049531a082fbdd217aba694819b7a3f954a55 Author: Aden Lindsay <140392385+AdenMGB@users.noreply.github.com> Date: Mon Dec 30 15:13:37 2024 +1030 Add files via upload commit ea1be4d7505a9ab16bda338491c0ec313d0bc586 Author: Aden Lindsay <140392385+AdenMGB@users.noreply.github.com> Date: Mon Dec 30 15:13:20 2024 +1030 Delete pages/settings/index.vue
91 lines
2.2 KiB
TOML
91 lines
2.2 KiB
TOML
[package]
|
|
name = "drop-app"
|
|
version = "0.1.0"
|
|
description = "The client application for the open-source, self-hosted game distribution platform Drop"
|
|
authors = ["Drop OSS"]
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[target."cfg(any(target_os = \"macos\", windows, target_os = \"linux\"))".dependencies]
|
|
tauri-plugin-single-instance = { version = "2.0.0", features = ["deep-link"] }
|
|
|
|
[lib]
|
|
# The `_lib` suffix may seem redundant but it is necessary
|
|
# to make the lib name unique and wouldn't conflict with the bin name.
|
|
# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
|
|
name = "drop_app_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build]
|
|
rustflags = ["-C", "target-feature=+aes,+sse2"]
|
|
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.0.0", features = [] }
|
|
|
|
[dependencies]
|
|
tauri-plugin-shell = "2.0.0"
|
|
serde = { version = "1", features = ["derive", "rc"] }
|
|
serde_json = "1"
|
|
serde-binary = "0.5.0"
|
|
rayon = "1.10.0"
|
|
directories = "5.0.1"
|
|
webbrowser = "1.0.2"
|
|
url = "2.5.2"
|
|
tauri-plugin-deep-link = "2"
|
|
log = "0.4.22"
|
|
hex = "0.4.3"
|
|
tauri-plugin-dialog = "2"
|
|
http = "1.1.0"
|
|
urlencoding = "2.1.3"
|
|
md5 = "0.7.0"
|
|
chrono = "0.4.38"
|
|
tauri-plugin-os = "2"
|
|
boxcar = "0.2.7"
|
|
umu-wrapper-lib = "0.1.0"
|
|
tauri-plugin-autostart = "2.0.0"
|
|
shared_child = "1.0.1"
|
|
|
|
[dependencies.tauri]
|
|
version = "2.1.1"
|
|
features = ["tray-icon"]
|
|
|
|
|
|
[dependencies.tokio]
|
|
version = "1.40.0"
|
|
features = ["rt", "tokio-macros", "signal"]
|
|
|
|
[dependencies.log4rs]
|
|
version = "1.3.0"
|
|
features = ["console_appender", "file_appender"]
|
|
|
|
[dependencies.rustix]
|
|
version = "0.38.37"
|
|
features = ["fs"]
|
|
|
|
[dependencies.uuid]
|
|
version = "1.10.0"
|
|
features = [
|
|
"v4", # Lets you generate random UUIDs
|
|
"fast-rng", # Use a faster (but still sufficiently random) RNG
|
|
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
|
|
]
|
|
|
|
[dependencies.openssl]
|
|
version = "0.10.66"
|
|
features = ["vendored"]
|
|
|
|
[dependencies.rustbreak]
|
|
version = "2"
|
|
features = [] # You can also use "yaml_enc" or "bin_enc"
|
|
|
|
[dependencies.reqwest]
|
|
version = "0.12"
|
|
features = ["json", "blocking"]
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = 'abort'
|