1579686fdd
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
24 lines
491 B
TOML
24 lines
491 B
TOML
[workspace]
|
|
|
|
[package]
|
|
name = "spacesh-app"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "spacesh_app_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = [] }
|
|
spacesh-proto = { path = "../../crates/spacesh-proto" }
|
|
tokio = { version = "1", features = ["full"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
base64 = "0.22"
|
|
anyhow = "1"
|
|
dirs = "5"
|