mirror of
https://github.com/Drop-OSS/drop-app.git
synced 2026-01-30 19:15:17 +01:00
* feat: depot api downloads * feat: frontend fixes and experimental webview store * feat: sync downloader * feat: cleanup and fixes * feat: encrypted database and fixed resuming * feat: launch option selector * fix: autostart when no options * fix: clippy * fix: clippy x2 * feat: executor launch * feat: executor launch * feat: not installed error handling * feat: better offline handling * feat: dependency popup * fix: cancelation and resuming issues * feat: dedup by platform * feat: new ui for additional components and fix dl manager clog * feat: auto-queue dependencies * feat: depot scanning and ranking * feat: new library fetching stack * In-app store page (Windows + macOS) (#176) * feat: async store loading * feat: fix overscroll behaviour * fix: query params in server protocol * fix: clippy
38 lines
1.1 KiB
TOML
38 lines
1.1 KiB
TOML
[package]
|
|
name = "games"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
aes = "0.8.4"
|
|
async-scoped = { version = "0.9.0", features = ["use-tokio"] }
|
|
async-trait = "0.1.89"
|
|
atomic-instant-full = "0.1.0"
|
|
bitcode = "0.6.7"
|
|
boxcar = "0.2.14"
|
|
crossbeam-channel = "0.5.15"
|
|
ctr = "0.9.2"
|
|
database = { path = "../database", version = "0.1.0" }
|
|
download_manager = { path = "../download_manager", version = "0.1.0" }
|
|
droplet-rs = { git = "https://github.com/Drop-OSS/droplet-rs" }
|
|
futures-util = "*"
|
|
hex = "0.4.3"
|
|
log = "0.4.28"
|
|
native_model = { git = "https://github.com/Drop-OSS/native_model.git", version = "0.6.4", features = [
|
|
"rmp_serde_1_3"
|
|
] }
|
|
rayon = "1.11.0"
|
|
remote = { path = "../remote", version = "0.1.0" }
|
|
reqwest = "0.12.23"
|
|
rustix = "1.1.2"
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
serde_json = "1.0.145"
|
|
serde_with = "3.15.0"
|
|
sha2 = "0.10.9"
|
|
sysinfo = "0.37.2"
|
|
tauri = "*"
|
|
throttle_my_fn = "0.2.6"
|
|
tokio = { version = "*", features = ["rt", "sync"] }
|
|
tokio-util = { version = "*", features = ["io"] }
|
|
utils = { path = "../utils", version = "0.1.0" }
|