From 5bf3f3c2dd1a8126ab86b8d44595dd9746133529 Mon Sep 17 00:00:00 2001 From: arctic_hen7 Date: Tue, 10 May 2022 19:58:20 +1000 Subject: [PATCH] chore: updated deps after #137 These were just for the demos that weren't ready at the time of the PR. --- examples/comprehensive/tiny/Cargo.toml | 2 +- examples/demos/auth/Cargo.toml | 2 +- examples/demos/fetching/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/comprehensive/tiny/Cargo.toml b/examples/comprehensive/tiny/Cargo.toml index fcfeb3e071..22d106acb4 100644 --- a/examples/comprehensive/tiny/Cargo.toml +++ b/examples/comprehensive/tiny/Cargo.toml @@ -7,4 +7,4 @@ edition = "2021" [dependencies] perseus = { path = "../../../packages/perseus" } -sycamore = "=0.8.0-beta.4" +sycamore = "=0.8.0-beta.5" diff --git a/examples/demos/auth/Cargo.toml b/examples/demos/auth/Cargo.toml index d5c0475d8e..a21250de12 100644 --- a/examples/demos/auth/Cargo.toml +++ b/examples/demos/auth/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" [dependencies] # We can't use hydration here yet (it doesn't handle the rapid page changes from unauthenticated to authenticated well) perseus = { path = "../../../packages/perseus", features = [] } -sycamore = "=0.8.0-beta.4" +sycamore = "=0.8.0-beta.5" serde = { version = "1", features = ["derive"] } serde_json = "1" # We need the `HtmlDocument` feature to be able to use cookies (which this example does) diff --git a/examples/demos/fetching/Cargo.toml b/examples/demos/fetching/Cargo.toml index 8526b44e3a..51ccf61f83 100644 --- a/examples/demos/fetching/Cargo.toml +++ b/examples/demos/fetching/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] perseus = { path = "../../../packages/perseus", features = [ "hydrate" ] } -sycamore = "=0.8.0-beta.4" +sycamore = "=0.8.0-beta.5" serde = { version = "1", features = ["derive"] } serde_json = "1" ureq = "2"