- 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.
25 lines
526 B
TOML
25 lines
526 B
TOML
[package]
|
|
name = "forge-host"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
build = "build.rs"
|
|
|
|
[[bin]]
|
|
name = "forge-host"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
reqwest = { version = "0.12.20", default-features = false, features = ["rustls-tls"] }
|
|
tauri = { version = "2", features = [] }
|
|
tauri-plugin-dialog = "2"
|
|
toml = "0.9.8"
|
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
|
flate2 = "1.1.2"
|
|
tar = "0.4.44"
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|