Initial commit

This commit is contained in:
2026-03-25 09:32:02 +01:00
commit 23ce1b7ee2
77 changed files with 21169 additions and 0 deletions

30
src-tauri/Cargo.toml Normal file
View File

@@ -0,0 +1,30 @@
[package]
name = "brittle-app"
version = "0.1.0"
edition = "2021"
[lib]
name = "brittle_app"
[[bin]]
name = "brittle"
path = "src/main.rs"
[build-dependencies]
tauri-build = { version = "2", features = [] }
[dependencies]
brittle-core = { path = "../brittle-core" }
tauri = { version = "2", features = [] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
dirs = "6"
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
thiserror = "2"
url = "2"
urlencoding = "2"
uuid = { version = "1", features = ["v7"] }
[dev-dependencies]
tempfile = "3"