Deadlock fixes (#85)

* fixed deadlock

* added missing files to commit

* clippy & dist
This commit is contained in:
Wyatt Verchere
2023-04-17 16:07:09 -07:00
committed by GitHub
parent 19a4aa6689
commit 63d2785b2f
6 changed files with 22 additions and 16 deletions

View File

@@ -10,8 +10,6 @@ pnpm-debug.log*
lerna-debug.log*
node_modules
dist
dist-ssr
*.local
# Editor directories and files

3
theseus_gui/dist/.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
# exclude everything except this file
*
!.gitignore

View File

@@ -19,7 +19,7 @@ theseus = { path = "../../theseus", features = ["tauri"] }
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
tauri = { version = "1.2", features = ["protocol-asset", "window-close", "window-create", "dialog"] }
tauri = { version = "1.2", features = ["dialog", "protocol-asset", "window-close", "window-create"] }
tokio = { version = "1", features = ["full"] }
thiserror = "1.0"
tokio-stream = { version = "0.1", features = ["fs"] }