36 lines
1 KiB
TOML
36 lines
1 KiB
TOML
[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]
|
|
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"] }
|
|
console_error_panic_hook = "0.1"
|
|
console_log = "1"
|
|
log = "0.4"
|
|
|
|
leptos-use = "0.14.0-beta"
|
|
# 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"
|
|
|
|
# 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",
|
|
] }
|
|
icondata = "0.4"
|
|
|
|
[dev-dependencies]
|
|
wasm-bindgen = "0.2"
|
|
wasm-bindgen-test = "0.3"
|
|
web-sys = { version = "0.3", features = ["Document", "Window"] }
|