mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 14:54:16 +00:00
20 lines
553 B
TOML
20 lines
553 B
TOML
[package]
|
|
name = "js-framework-benchmark-leptos"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
lto = true
|
|
|
|
[dependencies]
|
|
leptos = { path = "../../leptos", features = ["csr"] } # for actual benchmarking, add `nightly` and `event-delegation` features
|
|
# 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"
|