Revert "feat: add window module"

This commit is contained in:
Jonas Kruckenberg 2022-11-03 18:55:39 +01:00 committed by GitHub
parent 5d6ea2060c
commit a36e787bbb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
67 changed files with 573 additions and 11705 deletions

21
examples/api/Cargo.toml Normal file
View file

@ -0,0 +1,21 @@
[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 = "../../", features = ["all"] }
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"]