chore: Update gitignore and path handling imports
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -8,6 +8,9 @@ __pycache__
|
|||||||
node_modules
|
node_modules
|
||||||
dist
|
dist
|
||||||
src-tauri/target
|
src-tauri/target
|
||||||
|
src-tauri/binaries
|
||||||
|
scripts/.sidecar-build
|
||||||
|
.sidecar-build
|
||||||
src-tauri/gen
|
src-tauri/gen
|
||||||
package-lock.json
|
package-lock.json
|
||||||
Cargo.lock
|
Cargo.lock
|
||||||
|
|||||||
@@ -2,11 +2,11 @@ use serde::{Deserialize, Serialize};
|
|||||||
use serde_json::Value;
|
use serde_json::Value;
|
||||||
use std::fs::File;
|
use std::fs::File;
|
||||||
use std::io::{BufRead, BufReader, Write};
|
use std::io::{BufRead, BufReader, Write};
|
||||||
use std::path::PathBuf;
|
use std::path::{Path, PathBuf};
|
||||||
use std::process::{Command, Stdio};
|
use std::process::{Command as ProcessCommand, Stdio};
|
||||||
use tauri::{
|
use tauri::{
|
||||||
menu::{Menu, MenuItem, Submenu},
|
menu::{Menu, MenuItem, Submenu},
|
||||||
Emitter,
|
AppHandle, Emitter, Manager,
|
||||||
};
|
};
|
||||||
|
|
||||||
fn repo_root() -> PathBuf {
|
fn repo_root() -> PathBuf {
|
||||||
|
|||||||
Reference in New Issue
Block a user