Files
BoilR/Cargo.toml
T
2022-04-09 21:49:11 +02:00

35 lines
1.1 KiB
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 = { git = "https://github.com/PhilipK/steam_shortcuts_util",rev="c8953ecfc9c612be49c537fb3add683cd83f9379" }
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", optional = true }
egui = { version = "0.17.0", optional = true }
image = { version = "0.24.1", optional = true, features = ["png"] }
toml = { version = "^0.5.8", optional = true }
[features]
#default = ["ui"]
ui = ["eframe", "egui","toml","image"]
[target.'cfg(windows)'.dependencies]
winreg = "0.10.1"