mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
* Remove pinned module. * Create Yew Platform. * Remove some additional dependencies. * Fix clippy. * Restore wasm-bindgen-futures. * Fix docs. * Migrate to prokio. * Fix docs warnings. * Fix dependencies.
19 lines
561 B
TOML
19 lines
561 B
TOML
[package]
|
|
name = "benchmark-ssr"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
yew = { path = "../../packages/yew", features = ["ssr"] }
|
|
function_router = { path = "../../examples/function_router" }
|
|
tokio = { version = "1.19", features = ["full"] }
|
|
jemallocator = "0.5.0"
|
|
average = "0.13.1"
|
|
tabled = "0.8.0"
|
|
indicatif = "0.17.0"
|
|
serde = { version = "1.0.138", features = ["derive"] }
|
|
serde_json = "1.0.82"
|
|
clap = { version = "3.2.8", features = ["derive"] }
|