Backup shortcuts (#144)

* Add initial option to back up shortcuts

* Show list of backups

* Reload backups on change

* Restore backups

* Improve UX of backup ui

* Reorganize ui

* Update version in cargo.toml

* Update flatpak description

* Update cargo-lock.json
This commit is contained in:
Philip Kristoffersen
2022-05-20 21:53:21 +02:00
committed by GitHub
parent f5fef331ab
commit 967465d326
9 changed files with 269 additions and 37 deletions
+53 -27
View File
@@ -1,35 +1,61 @@
[package]
name = "boilr"
version = "1.3.6"
edition = "2021"
name = "boilr"
version = "1.3.7"
# 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.3.0"
serde = { version = "^1.0.137", features = ["derive"] }
serde_json = "^1.0.81"
tokio = { version = "^1.18.2", 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.23"
futures = { version = "^0.3.21" }
dashmap = { version = "^5.3.3", features = ["serde"] }
is_executable = "^1.0.1"
rusty-leveldb = "^0.3.6"
base64 = "^0.13.0"
eframe = { version = "^0.18.0" }
egui = { version = "^0.18.1" }
image = { version = "0.24.2", features = ["png"] }
toml = { version = "^0.5.9" }
sysinfo = "^0.23.12"
sqlite = "0.26.0"
chrono = "^0.4.19"
config = "^0.11.0"
copypasta = "0.7.1"
failure = "^0.1.8"
flate2 = "^1.0.23"
is_executable = "^1.0.1"
nom = "^7.1.1"
rusty-leveldb = "^0.3.6"
serde_json = "^1.0.81"
sqlite = "^0.26.0"
steam_shortcuts_util = "^1.1.7"
steamgriddb_api = "^0.3.0"
sysinfo = "^0.23.12"
[target.'cfg(windows)'.dependencies]
winreg = "0.10.1"
[dependencies.dashmap]
features = ["serde"]
version = "^5.3.3"
[dependencies.eframe]
version = "^0.18.0"
[dependencies.egui]
version = "^0.18.1"
[dependencies.futures]
version = "^0.3.21"
[dependencies.image]
features = ["png"]
version = "^0.24.2"
[dependencies.reqwest]
default_features = false
version = "^0.11.10"
[dependencies.serde]
features = ["derive"]
version = "^1.0.137"
[dependencies.tokio]
features = ["full"]
version = "^1.18.2"
[dependencies.toml]
version = "^0.5.9"
[target]
[target."cfg(windows)"]
[target."cfg(windows)".build-dependencies]
winres = "^0.1"
[target."cfg(windows)".dependencies]
winreg = "^0.10.1"
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"