feat: Add password reset functionality with request and reset forms
feat: Implement price list import feature with preview and apply options feat: Create price rules management page with CRUD operations feat: Develop quotes management page with itemized quotes and status tracking feat: Introduce organization registration page for new users feat: Build suppliers management page with detailed supplier information feat: Create users management page for inviting and managing roles chore: Add TypeScript configuration for improved type checking chore: Set up Vite configuration for development server and API proxy chore: Add Vite environment type definitions for better TypeScript support
This commit is contained in:
20
desktop-client/Cargo.toml
Normal file
20
desktop-client/Cargo.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "companytool-desktop-client"
|
||||
version = "0.1.0"
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1"
|
||||
companytool-shared-protocol = { path = "../shared-protocol" }
|
||||
eframe = "0.29"
|
||||
egui = "0.29"
|
||||
futures-util = "0.3"
|
||||
image = { version = "0.25", default-features = false, features = ["png"] }
|
||||
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
tokio = { version = "1", features = ["rt-multi-thread", "sync"] }
|
||||
tokio-tungstenite = "0.24"
|
||||
toml = "0.8"
|
||||
url = "2"
|
||||
3
desktop-client/companytool-client.toml
Normal file
3
desktop-client/companytool-client.toml
Normal file
@@ -0,0 +1,3 @@
|
||||
[server]
|
||||
api_base_url = "http://localhost:8080"
|
||||
ws_url = "ws://localhost:8080/ws"
|
||||
6792
desktop-client/src/main.rs
Normal file
6792
desktop-client/src/main.rs
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user