This commit is contained in:
Philip Kristoffersen
2022-04-09 21:49:11 +02:00
committed by GitHub
parent 2a1523470f
commit a0c6fe0c8f
22 changed files with 2349 additions and 572 deletions
+8 -12
View File
@@ -5,7 +5,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"}
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"
@@ -13,25 +13,21 @@ tokio = { version = "^1.17.0", features = ["full"] }
reqwest = { version = "^0.11.10", default_features = false }
config = "^0.11.0"
failure = "^0.1.8"
#https://fltk-rs.github.io/fltk-rs/
fltk = { version = "^1.3.2", features = ["fltk-bundled"], optional = true }
nom = "^7.1.1"
nom_locate = "^4.0.0"
flate2 = "^1.0.22"
toml = { version = "^0.5.8", optional = true }
futures = { version = "^0.3.21" }
dashmap = { version = "^5.2.0", features = ["serde"] }
fltk-theme = {version ="^0.4.2" , optional = true }
is_executable = "^1.0.1"
rusty-leveldb = "^0.3.6"
base64="^0.13.0"
[build-dependencies]
fl2rust = { version = "^0.4", optional = true }
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 = ["fltk", "fl2rust", "toml", "fltk-theme"]
#default = ["ui"]
ui = ["eframe", "egui","toml","image"]
[target.'cfg(windows)'.dependencies]