mirror of
https://github.com/Drop-OSS/drop-app.git
synced 2025-11-10 04:22:13 +10:00
* chore: Major refactoring Still needs a massive go-over because there shouldn't be anything referencing tauri in any of the workspaces except the original one. Process manager has been refactored as an example Signed-off-by: quexeky <git@quexeky.dev> * fix: Remote tauri dependency from process Signed-off-by: quexeky <git@quexeky.dev> * refactor: Improvements to src-tauri Signed-off-by: quexeky <git@quexeky.dev> * refactor: Builds, but some logic still left to move back Signed-off-by: quexeky <git@quexeky.dev> * refactor: Finish refactor Signed-off-by: quexeky <git@quexeky.dev> * chore: Run cargo clippy && cargo fmt Signed-off-by: quexeky <git@quexeky.dev> * refactor: Move everything into src-tauri Signed-off-by: quexeky <git@quexeky.dev> --------- Signed-off-by: quexeky <git@quexeky.dev>
20 lines
461 B
TOML
20 lines
461 B
TOML
[package]
|
|
name = "process"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
chrono = "0.4.42"
|
|
client = { version = "0.1.0", path = "../client" }
|
|
database = { version = "0.1.0", path = "../database" }
|
|
dynfmt = "0.1.5"
|
|
games = { version = "0.1.0", path = "../games" }
|
|
log = "0.4.28"
|
|
page_size = "0.6.0"
|
|
serde = "1.0.228"
|
|
serde_with = "3.15.0"
|
|
shared_child = "1.1.1"
|
|
tauri = "2.8.5"
|
|
tauri-plugin-opener = "2.5.0"
|
|
utils = { version = "0.1.0", path = "../utils" }
|