Use sycamore-state from github

This commit is contained in:
Jeremy Wall 2022-12-29 12:09:36 -06:00
parent f3f27a0350
commit 47fab33561
3 changed files with 4 additions and 2 deletions

3
Cargo.lock generated
View File

@ -2213,7 +2213,8 @@ dependencies = [
[[package]]
name = "sycamore-state"
version = "0.1.0"
version = "0.0.1"
source = "git+https://github.com/zaphar/sycamore-state?rev=v0.0.1#f74a051bf85330aef926a457d31e33f983966781"
dependencies = [
"sycamore",
"wasm-bindgen",

View File

@ -14,6 +14,7 @@ let
# incorrect. We override those here.
"sycamore-0.8.2" = "sha256-D968+8C5EelGGmot9/LkAlULZOf/Cr+1WYXRCMwb1nQ=";
"sqlx-0.6.2" = "sha256-X/LFvtzRfiOIEZJiVzmFvvULPpjhqvI99pSwH7a//GM=";
"sycamore-state-0.0.1" = "sha256-RatNr1b6r7eP3fOVatHA44D9xhDAljqSIWtFpMeBA9Y=";
};
});
in

View File

@ -15,7 +15,7 @@ crate-type = ["cdylib", "rlib"]
[dependencies]
recipes = { path = "../recipes" }
client-api = { path = "../api", package="api", features = ["browser"] }
sycamore-state = { path = "../../sycamore-state"}
sycamore-state = { git="https://github.com/zaphar/sycamore-state", rev="v0.0.1" }
# This makes debugging panics more tractable.
console_error_panic_hook = "0.1.7"
serde_json = "1.0.79"