1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-29 04:40:03 -04:00

Remove the directories dependency (#4904)

eframe now has its own logic to find the storage_dir to persist the app
when the persistence feature is enabled, instead of using the
directories crate. The directory should be the same as before (verified
with a unit test).

* Closes <https://github.com/emilk/egui/issues/4884>
* [x] I have followed the instructions in the PR template
This commit is contained in:
YgorSouza
2024-09-01 10:47:28 +02:00
committed by GitHub
parent 2a6a1302b8
commit edea5a40b9
5 changed files with 107 additions and 11 deletions

View File

@@ -77,6 +77,7 @@ document-features = " 0.2.8"
glow = "0.13"
glutin = "0.32.0"
glutin-winit = "0.5.0"
home = "0.5.9"
image = { version = "0.25", default-features = false }
log = { version = "0.4", features = ["std"] }
nohash-hasher = "0.2"
@@ -95,6 +96,7 @@ wgpu = { version = "22.1.0", default-features = false, features = [
# Make the renderer `Sync` even on wasm32, because it makes the code simpler:
"fragile-send-sync-non-atomic-wasm",
] }
windows-sys = "0.52"
winit = { version = "0.30.5", default-features = false }
[workspace.lints.rust]