2024-07-18 04:00:56 -04:00
|
|
|
[package]
|
|
|
|
name = "client"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
authors = ["Adam Doyle <adam@doordesk.net>"]
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-09-12 19:47:16 -04:00
|
|
|
# Cards
|
|
|
|
lib = { workspace = true }
|
|
|
|
serde_json = "1.0"
|
|
|
|
|
|
|
|
# Leptos
|
2024-09-07 01:17:51 -04:00
|
|
|
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"] }
|
2024-09-13 23:24:40 -04:00
|
|
|
# leptos = { git = "https://github.com/leptos-rs/leptos.git", features = ["csr", "nightly"] }
|
|
|
|
# leptos_meta = { git = "https://github.com/leptos-rs/leptos.git" }
|
|
|
|
# leptos_router = { git = "https://github.com/leptos-rs/leptos.git", features = ["nightly"] }
|
2024-09-05 17:53:39 -04:00
|
|
|
console_error_panic_hook = "0.1"
|
|
|
|
console_log = "1"
|
2024-08-14 21:30:39 -04:00
|
|
|
log = "0.4"
|
2024-09-05 17:53:39 -04:00
|
|
|
|
2024-09-12 19:47:16 -04:00
|
|
|
# Leptos-use
|
2024-10-08 17:18:13 -04:00
|
|
|
# leptos-use = { version = "0.14.0-beta", features = ["use_media_query"] }
|
|
|
|
leptos-use = { git = "https://github.com/Synphonyte/leptos-use.git", branch = "leptos-0.7", features = [
|
|
|
|
"use_media_query",
|
|
|
|
] }
|
2024-09-05 17:53:39 -04:00
|
|
|
codee = "0.2"
|
|
|
|
|
2024-09-12 19:47:16 -04:00
|
|
|
# UI stuff
|
2024-09-09 19:46:56 -04:00
|
|
|
# thaw = { version = "0.4.0-beta", features = ["csr", "nightly"] }
|
|
|
|
# thaw = { path = "../../thaw/thaw", features = ["csr", "nightly"] }
|
2024-09-12 19:47:16 -04:00
|
|
|
# thaw = { git = "https://github.com/adoyle0/thaw.git", features = [
|
|
|
|
# "csr",
|
|
|
|
# "nightly",
|
|
|
|
# ] }
|
|
|
|
thaw = { git = "https://github.com/thaw-ui/thaw.git", features = [
|
2024-09-09 19:46:56 -04:00
|
|
|
"csr",
|
|
|
|
"nightly",
|
|
|
|
] }
|
|
|
|
icondata = "0.4"
|
2024-07-18 04:00:56 -04:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-08-14 21:30:39 -04:00
|
|
|
wasm-bindgen = "0.2"
|
2024-07-18 04:00:56 -04:00
|
|
|
wasm-bindgen-test = "0.3"
|
|
|
|
web-sys = { version = "0.3", features = ["Document", "Window"] }
|