Initial boilerplate scaffold for continuum-app

This commit is contained in:
2026-08-28 16:21:23 +00:00
commit 4cb2e82a92
25 changed files with 810 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
[package]
name = "continuum-desktop"
version = "0.1.0"
description = "Continuum operator console desktop shell"
edition = "2021"
rust-version = "1.77"
[build-dependencies]
tauri-build = { version = "2.0", features = [] }
[dependencies]
tauri = { version = "2.1", features = ["tray-icon"] }
tauri-plugin-fs = "2.0"
tauri-plugin-shell = "2.0"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
[lib]
name = "continuum_desktop_lib"
crate-type = ["staticlib", "cdylib", "rlib"]
[[bin]]
name = "continuum-desktop"
path = "src/main.rs"