- Refactored the `load` function in `config.rs` to use a new `locate_config_path` function for improved clarity and maintainability. - Updated SurrealDB setup instructions in `SURREALDB_SETUP.md` and `surrealdb-setup.md` to reflect changes in the installation process and removed outdated script references. - Added new dependencies for Tauri in `package.json` and `package-lock.json`, including `@tauri-apps/cli` and `@tauri-apps/plugin-dialog`. - Updated the package-lock to include the latest versions of Tauri dependencies.
20 lines
494 B
TOML
20 lines
494 B
TOML
[workspace]
|
|
members = [
|
|
"arma/server/extension",
|
|
"bin/host/src-tauri",
|
|
"bin/icom",
|
|
"lib/models",
|
|
"lib/repositories",
|
|
"lib/services",
|
|
"lib/shared",
|
|
]
|
|
resolver = "3"
|
|
|
|
[workspace.dependencies]
|
|
arma-rs = { version = "1.11.15", features = ["chrono", "serde_json", "uuid"] }
|
|
chrono = "0.4.42"
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
serde_json = "1.0.145"
|
|
tokio = { version = "1.47.1", features = ["full"] }
|
|
uuid = { version = "1.18.1", features = ["v4"] }
|