From 03ceee42c0e5b5a5ceda48b89011613622da9928 Mon Sep 17 00:00:00 2001 From: Adam Doyle Date: Thu, 12 Sep 2024 19:47:16 -0400 Subject: [PATCH] update deps --- Cargo.lock | 8 ++++---- client/Cargo.toml | 16 ++++++++++++---- 2 files changed, 16 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1113b6f..dddb686 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2449,7 +2449,7 @@ dependencies = [ [[package]] name = "thaw" version = "0.4.0-beta2" -source = "git+https://github.com/adoyle0/thaw.git#e9d1630473fd45c05e83999408ef19c8213fc1a1" +source = "git+https://github.com/thaw-ui/thaw.git#092581d46d3650701df6bff10e606df3c970feb2" dependencies = [ "cfg-if", "chrono", @@ -2471,7 +2471,7 @@ dependencies = [ [[package]] name = "thaw_components" version = "0.2.0-beta2" -source = "git+https://github.com/adoyle0/thaw.git#e9d1630473fd45c05e83999408ef19c8213fc1a1" +source = "git+https://github.com/thaw-ui/thaw.git#092581d46d3650701df6bff10e606df3c970feb2" dependencies = [ "cfg-if", "leptos", @@ -2484,7 +2484,7 @@ dependencies = [ [[package]] name = "thaw_macro" version = "0.1.0-beta2" -source = "git+https://github.com/adoyle0/thaw.git#e9d1630473fd45c05e83999408ef19c8213fc1a1" +source = "git+https://github.com/thaw-ui/thaw.git#092581d46d3650701df6bff10e606df3c970feb2" dependencies = [ "proc-macro2", "quote", @@ -2494,7 +2494,7 @@ dependencies = [ [[package]] name = "thaw_utils" version = "0.1.0-beta2" -source = "git+https://github.com/adoyle0/thaw.git#e9d1630473fd45c05e83999408ef19c8213fc1a1" +source = "git+https://github.com/thaw-ui/thaw.git#092581d46d3650701df6bff10e606df3c970feb2" dependencies = [ "cfg-if", "chrono", diff --git a/client/Cargo.toml b/client/Cargo.toml index bb93d5c..a111039 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -7,6 +7,11 @@ authors = ["Adam Doyle "] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] +# Cards +lib = { workspace = true } +serde_json = "1.0" + +# Leptos leptos = { version = "0.7.0-beta", features = ["csr", "nightly"] } leptos_meta = { version = "0.7.0-beta" } leptos_router = { version = "0.7.0-beta", features = ["nightly"] } @@ -14,17 +19,20 @@ console_error_panic_hook = "0.1" console_log = "1" log = "0.4" +# Leptos-use leptos-use = { version = "0.14.0-beta", features = ["use_media_query"] } # leptos-use = { path = "../../leptos-use" } # leptos-use = { git = "https://github.com/adoyle0/leptos-use.git", branch = "leptos-0.7" } codee = "0.2" -lib = { workspace = true } -serde_json = "1.0" - +# UI stuff # thaw = { version = "0.4.0-beta", features = ["csr", "nightly"] } # thaw = { path = "../../thaw/thaw", features = ["csr", "nightly"] } -thaw = { git = "https://github.com/adoyle0/thaw.git", features = [ +# thaw = { git = "https://github.com/adoyle0/thaw.git", features = [ +# "csr", +# "nightly", +# ] } +thaw = { git = "https://github.com/thaw-ui/thaw.git", features = [ "csr", "nightly", ] }