tauri-sys/examples/api/Cargo.toml
Jonas Kruckenberg c3e5b84282 initial commit
2022-11-01 15:19:25 +01:00

21 lines
706 B
TOML

[package]
name = "tauri-app-ui"
version = "0.0.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tauri-sys = { path = "../../" }
serde = { version = "1.0.140", features = ["derive"] }
sycamore = { git = "https://github.com/sycamore-rs/sycamore", rev = "abd556cbc02047042dad2ebd04405e455a9b11b2", features = ["suspense", "hydrate"] }
sycamore-router = { git = "https://github.com/sycamore-rs/sycamore", rev = "abd556cbc02047042dad2ebd04405e455a9b11b2" }
log = "0.4.17"
wasm-logger = "0.2.0"
gloo-timers = "0.2.4"
shared = { path = "shared" }
[features]
ssg = ["sycamore/ssr"]
[workspace]
members = ["src-tauri", "shared"]