mirror of
https://github.com/djibux/BoilR.git
synced 2026-09-01 14:03:42 +02:00
This solves problem where shortcut parsing would fail if there was no backspace character
33 lines
931 B
TOML
33 lines
931 B
TOML
[package]
|
|
name = "boilr"
|
|
version = "0.2.7"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[dependencies]
|
|
steam_shortcuts_util = "1.1.7"
|
|
steamgriddb_api = "^0.2,0"
|
|
serde = { version = "^1.0.136", features = ["derive"] }
|
|
serde_json = "^1.0.79"
|
|
tokio = { version = "^1.17.0", features = ["full"] }
|
|
reqwest = { version = "^0.11.10", default_features = false }
|
|
config = "^0.11.0"
|
|
failure = "^0.1.8"
|
|
nom = "^7.1.1"
|
|
flate2 = "^1.0.22"
|
|
futures = { version = "^0.3.21" }
|
|
dashmap = { version = "^5.2.0", features = ["serde"] }
|
|
is_executable = "^1.0.1"
|
|
rusty-leveldb = "^0.3.6"
|
|
base64 = "^0.13.0"
|
|
eframe = { version = "0.17.0" }
|
|
egui = { version = "0.17.0" }
|
|
image = { version = "0.24.1", features = ["png"] }
|
|
toml = { version = "^0.5.8" }
|
|
sysinfo = "0.23.10"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winreg = "0.10.1"
|
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
|
winres = "0.1" |