[package] name = "client" version = "0.1.0" edition = "2021" 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"] } # 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"] } 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" # 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 = [ # "csr", # "nightly", # ] } thaw = { git = "https://github.com/thaw-ui/thaw.git", features = [ "csr", "nightly", ] } icondata = "0.4" [dev-dependencies] wasm-bindgen = "0.2" wasm-bindgen-test = "0.3" web-sys = { version = "0.3", features = ["Document", "Window"] }