Init commit

This commit is contained in:
Ultradesu
2026-08-12 01:30:57 +01:00
commit 423ea59371
67 changed files with 23280 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
[package]
name = "furumi-desktop"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
authors.workspace = true
description.workspace = true
readme.workspace = true
publish = false
[[bin]]
name = "furumi-desktop"
path = "src/main.rs"
[dependencies]
furumi-backend.workspace = true
furumi-ui.workspace = true
[lints]
workspace = true
+5
View File
@@ -0,0 +1,5 @@
fn main() -> Result<(), Box<dyn std::error::Error>> {
let backend = furumi_backend::spawn_backend()?;
furumi_ui::run(&backend)?;
Ok(())
}