98d3cd758e
Adds the desktop client as a new workspace member and includes its initial Cargo.toml and main.rs files. This lays the groundwork for the desktop application's user interface and integration with the common library.
12 lines
346 B
TOML
12 lines
346 B
TOML
[package]
|
|
name = "doctate-desktop"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
description = "Desktop dictation client for the doctate medical dictation system"
|
|
|
|
[dependencies]
|
|
doctate-common = { path = "../doctate-common" }
|
|
eframe = "0.28"
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|