mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
36 lines
1,011 B
TOML
36 lines
1,011 B
TOML
[package]
|
|
name = "benchmarks"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
l0410 = { package = "leptos", version = "0.4.10", features = [
|
|
"nightly",
|
|
"ssr",
|
|
] }
|
|
leptos = { path = "../leptos", features = ["ssr", "nightly"] }
|
|
leptos_reactive = { path = "../leptos_reactive", features = ["ssr", "nightly"] }
|
|
tachydom = { git = "https://github.com/gbj/tachys", features = [
|
|
"nightly",
|
|
"leptos",
|
|
] }
|
|
tachy_maccy = { git = "https://github.com/gbj/tachys", features = ["nightly"] }
|
|
sycamore = { version = "0.8", features = ["ssr"] }
|
|
yew = { version = "0.20", features = ["ssr"] }
|
|
tokio-test = "0.4"
|
|
miniserde = "0.1"
|
|
gloo = "0.8"
|
|
uuid = { version = "1", features = ["serde", "v4", "wasm-bindgen"] }
|
|
wasm-bindgen = "0.2"
|
|
lazy_static = "1"
|
|
log = "0.4"
|
|
strum = "0.24"
|
|
strum_macros = "0.24"
|
|
serde = { version = "1", features = ["derive", "rc"] }
|
|
serde_json = "1"
|
|
tera = "1"
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3"
|
|
features = ["Window", "Document", "HtmlElement", "HtmlInputElement"]
|