Init commit
This commit is contained in:
@@ -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
|
||||
@@ -0,0 +1,5 @@
|
||||
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||||
let backend = furumi_backend::spawn_backend()?;
|
||||
furumi_ui::run(&backend)?;
|
||||
Ok(())
|
||||
}
|
||||
Reference in New Issue
Block a user