2022-10-19 20:41:51 +00:00
|
|
|
[package]
|
|
|
|
name = "benchmarks"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2024-09-20 04:40:33 +00:00
|
|
|
# std::sync::LazyLock is stabilized in Rust version 1.80.0
|
|
|
|
rust-version = "1.80.0"
|
2022-10-19 20:41:51 +00:00
|
|
|
|
2022-10-23 01:40:41 +00:00
|
|
|
[dependencies]
|
2023-09-22 19:41:44 +00:00
|
|
|
l0410 = { package = "leptos", version = "0.4.10", features = [
|
2024-08-11 00:01:41 +00:00
|
|
|
"nightly",
|
|
|
|
"ssr",
|
2023-09-08 20:33:00 +00:00
|
|
|
] }
|
2023-09-22 19:41:44 +00:00
|
|
|
leptos = { path = "../leptos", features = ["ssr", "nightly"] }
|
2023-09-25 19:45:52 +00:00
|
|
|
leptos_reactive = { path = "../leptos_reactive", features = ["ssr", "nightly"] }
|
2023-11-08 01:03:26 +00:00
|
|
|
tachydom = { git = "https://github.com/gbj/tachys", features = [
|
2024-08-11 00:01:41 +00:00
|
|
|
"nightly",
|
|
|
|
"leptos",
|
2023-11-08 01:03:26 +00:00
|
|
|
] }
|
2023-09-25 19:45:52 +00:00
|
|
|
tachy_maccy = { git = "https://github.com/gbj/tachys", features = ["nightly"] }
|
2024-08-11 00:01:41 +00:00
|
|
|
sycamore = { version = "0.8.0", features = ["ssr"] }
|
|
|
|
yew = { version = "0.20.0", features = ["ssr"] }
|
|
|
|
tokio-test = "0.4.0"
|
|
|
|
miniserde = "0.1.0"
|
|
|
|
gloo = "0.8.0"
|
|
|
|
uuid = { version = "1.0", features = ["serde", "v4", "wasm-bindgen"] }
|
|
|
|
wasm-bindgen = "0.2.0"
|
|
|
|
lazy_static = "1.0"
|
|
|
|
log = "0.4.0"
|
|
|
|
strum = "0.24.0"
|
|
|
|
strum_macros = "0.24.0"
|
|
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
|
|
|
serde_json = "1.0"
|
|
|
|
tera = "1.0"
|
2022-10-23 01:40:41 +00:00
|
|
|
|
|
|
|
[dependencies.web-sys]
|
2024-08-11 00:01:41 +00:00
|
|
|
version = "0.3.0"
|
2023-04-07 17:04:26 +00:00
|
|
|
features = ["Window", "Document", "HtmlElement", "HtmlInputElement"]
|