mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
db1c15f4e4
* fix: fix web-sys warnings in server_fn * fix: update web-sys to 0.3.70 * fix: web-sys clipboard api in 0.3.70
23 lines
456 B
TOML
23 lines
456 B
TOML
[package]
|
|
name = "counter_without_macros"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
rust-version = "1.75"
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
lto = true
|
|
|
|
[dependencies]
|
|
leptos = { path = "../../leptos", features = ["csr"] }
|
|
console_error_panic_hook = "0.1.7"
|
|
|
|
[dev-dependencies]
|
|
wasm-bindgen = "0.2"
|
|
wasm-bindgen-test = "0.3.42"
|
|
pretty_assertions = "1.4"
|
|
rstest = "0.22.0"
|
|
|
|
[dev-dependencies.web-sys]
|
|
features = ["HtmlElement", "XPathResult"]
|
|
version = "0.3.70"
|