chore(project): initialize cargo workspace, CI workflows, and package config

This commit is contained in:
Stevan Freeborn
2026-07-23 11:57:40 -05:00
parent 18c99e9f88
commit a6481370fa
9 changed files with 8156 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
[workspace]
members = ["app/src-tauri", "shared", "server"]
resolver = "2"
[workspace.package]
edition = "2021"
authors = ["Stevan Freeborn"]
[workspace.dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
ed25519-dalek = "3.0.0"
base64 = "0.22.1"
sha2 = "0.11.0"
thiserror = "2"
url = "2.5.8"
log = "0.4"
[profile.release]
lto = true
codegen-units = 1
strip = "symbols"
opt-level = "s"
panic = "abort"