update deps
This commit is contained in:
parent
74f4ed302c
commit
03ceee42c0
2 changed files with 16 additions and 8 deletions
8
Cargo.lock
generated
8
Cargo.lock
generated
|
@ -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",
|
||||
|
|
|
@ -7,6 +7,11 @@ authors = ["Adam Doyle <adam@doordesk.net>"]
|
|||
# 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",
|
||||
] }
|
||||
|
|
Loading…
Add table
Reference in a new issue