diff --git a/Cargo.lock b/Cargo.lock index e8d4bb3..bdc092a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1282,7 +1282,7 @@ dependencies = [ [[package]] name = "kitchen" -version = "0.2.12" +version = "0.2.13" dependencies = [ "api", "argon2", @@ -1312,7 +1312,7 @@ dependencies = [ [[package]] name = "kitchen-wasm" -version = "0.2.12" +version = "0.2.13" dependencies = [ "api", "async-trait", @@ -2214,7 +2214,8 @@ dependencies = [ [[package]] name = "sycamore-state" version = "0.1.0" -source = "git+https://github.com/zaphar/sycamore-state?rev=v0.1.0#bc8854b4dde1294915b2aa7f3fcd710515f3dfd8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d062eab83a67073c6b39e4a7fa9901558333946729d63cfcb7d0e97f0bf4d75" dependencies = [ "sycamore", "wasm-bindgen", diff --git a/flake.nix b/flake.nix index 92bd845..8a2f75b 100644 --- a/flake.nix +++ b/flake.nix @@ -17,7 +17,7 @@ kitchenGen = (import ./nix/kitchen/default.nix); kitchenWasmGen = (import ./nix/kitchenWasm/default.nix); moduleGen = (import ./nix/kitchen/module.nix); - version = "0.2.12"; + version = "0.2.13"; in flake-utils.lib.eachDefaultSystem (system: let diff --git a/kitchen/Cargo.toml b/kitchen/Cargo.toml index 7d69393..195f227 100644 --- a/kitchen/Cargo.toml +++ b/kitchen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kitchen" -version = "0.2.12" +version = "0.2.13" authors = ["Jeremy Wall "] edition = "2021" diff --git a/nix/kitchenWasm/default.nix b/nix/kitchenWasm/default.nix index eb10832..bef1696 100644 --- a/nix/kitchenWasm/default.nix +++ b/nix/kitchenWasm/default.nix @@ -14,7 +14,6 @@ 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 diff --git a/web/Cargo.toml b/web/Cargo.toml index 7619a16..6f10c8e 100644 --- a/web/Cargo.toml +++ b/web/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kitchen-wasm" -version = "0.2.12" +version = "0.2.13" edition = "2021" [features] @@ -15,7 +15,7 @@ crate-type = ["cdylib", "rlib"] [dependencies] recipes = { path = "../recipes" } client-api = { path = "../api", package="api", features = ["browser"] } -sycamore-state = { git="https://github.com/zaphar/sycamore-state", rev="v0.1.0" } +sycamore-state = "0.1.0" # This makes debugging panics more tractable. console_error_panic_hook = "0.1.7" serde_json = "1.0.79"