2023-05-27 12:07:44 +00:00
|
|
|
[package]
|
|
|
|
name = "js-framework-benchmark-leptos"
|
|
|
|
version = "1.0.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
codegen-units = 1
|
|
|
|
lto = true
|
|
|
|
|
|
|
|
[dependencies]
|
2023-06-27 01:12:14 +00:00
|
|
|
leptos = { path = "../../leptos", features = ["csr", "nightly", "template_macro"] }
|
2023-05-27 12:07:44 +00:00
|
|
|
console_log = "1"
|
|
|
|
log = "0.4"
|
|
|
|
# used in rand, but we need to enable js feature
|
|
|
|
getrandom = { version = "0.2.7", features = ["js"] }
|
|
|
|
rand = { version = "0.8.5", features = ["small_rng"] }
|
|
|
|
console_error_panic_hook = "0.1.7"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
wasm-bindgen = "0.2"
|
|
|
|
wasm-bindgen-test = "0.3.0"
|
|
|
|
web-sys = "0.3"
|